Site-Proximo/.htaccess

8 lines
226 B
ApacheConf
Raw Permalink Normal View History

2021-01-26 20:20:31 +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>