Skip to content
Snippets Groups Projects
.htaccess 216 B
Newer Older
Daniel's avatar
Daniel committed
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.shtml$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /index.shtml [L]
</IfModule>