.htaccess 276 B

1234567891011
  1. <IfModule mod_negotiation.c>
  2. Options -MultiViews
  3. </IfModule>
  4. <IfModule mod_rewrite.c>
  5. RewriteEngine On
  6. RewriteBase /
  7. RewriteRule ^index\.html$ - [L]
  8. RewriteCond %{REQUEST_FILENAME} !-f
  9. RewriteCond %{REQUEST_FILENAME} !-d
  10. RewriteRule . /index.html [L]
  11. </IfModule>