Skip to content
Snippets Groups Projects
Commit 2a67a6ce authored by jurgenhaas's avatar jurgenhaas
Browse files

Redirect all requests to index.html in default site

parent 2cf0c811
No related branches found
No related tags found
No related merge requests found
......@@ -199,3 +199,10 @@
dest: /var/www/html/index.html
owner: www-data
group: www-data
- name: Copy default htaccess
template:
src: htaccess
dest: /var/www/html/.htaccess
owner: www-data
group: www-data
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.html [L]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment