.htaccess

This commit is contained in:
Alexandre Bourlier
2018-05-02 09:04:10 +02:00
parent f0ea5e3de3
commit 943f623444
2 changed files with 10 additions and 1 deletions

8
.htaccess Normal file
View File

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