This commit is contained in:
Clément
2018-10-05 11:55:29 +02:00
parent 51ccde0c0e
commit 3fa8602e2c
17 changed files with 408 additions and 11 deletions

8
www/.htaccess Normal file
View File

@ -0,0 +1,8 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule \. - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>