Skip to content

Instantly share code, notes, and snippets.

@jbutko
Forked from joellongie/.htaccess
Created January 9, 2018 15:00
Show Gist options
  • Save jbutko/bb9c2e8ad57dee803ccd6d57fe5f19cc to your computer and use it in GitHub Desktop.
Save jbutko/bb9c2e8ad57dee803ccd6d57fe5f19cc to your computer and use it in GitHub Desktop.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment