bharat_erp/web/.htaccess
2026-07-24 14:01:50 +05:30

10 lines
276 B
ApacheConf

# SPA fallback for Flutter web path URL strategy (root host).
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>