added .htaccess file

This commit is contained in:
Malini 2025-11-25 14:50:17 +05:30
parent a966ca77f4
commit 7958fff5e9

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>