site-proximo/.htaccess

8 lines
226 B
ApacheConf
Raw Permalink Normal View History

2020-11-26 22:55:52 +01: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>