add htaccess

This commit is contained in:
Damillora 2020-02-09 14:33:25 +07:00
parent 908e43fada
commit a7ad123c26
1 changed files with 8 additions and 0 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>