add htaccess file

This commit is contained in:
gerchek 2022-01-17 14:38:16 +05:00
parent 6c11db0835
commit 97915ddeb9
1 changed files with 9 additions and 0 deletions

9
.htaccess Normal file
View File

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