refactoring

This commit is contained in:
DmitriyB
2022-09-21 18:07:31 +05:00
parent 14e5f663b6
commit 97f86367dd
11 changed files with 31 additions and 11 deletions
+14
View File
@@ -0,0 +1,14 @@
<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]
FallbackResource ./index.html
</IfModule>