add htaccess

This commit is contained in:
DmitriyB
2022-08-10 11:11:15 +05:00
parent 2a021bda0c
commit ef8dded58e
+13
View File
@@ -0,0 +1,13 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>