This commit is contained in:
VividTruthKeeper 2022-07-28 16:46:00 +05:00
parent 3732b9ec88
commit 0c43d5f983
2 changed files with 10 additions and 0 deletions

10
public/.htaccess Normal file
View File

@ -0,0 +1,10 @@
<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>