Skip to content

Instantly share code, notes, and snippets.

@herrbischoff
Created April 8, 2015 21:56
Show Gist options
  • Save herrbischoff/4d47254380431f99d86e to your computer and use it in GitHub Desktop.
Save herrbischoff/4d47254380431f99d86e to your computer and use it in GitHub Desktop.
Redirect all pages to index
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
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