BlueFire/.htaccess

9 lines
214 B
ApacheConf
Raw Normal View History

2020-02-09 07:33:25 +00:00
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>