Skip to content

Instantly share code, notes, and snippets.

@michaeljymsgutierrez
Last active January 7, 2020 10:23
Show Gist options
  • Save michaeljymsgutierrez/1029ee71bfd592cfdf320c989744a55d to your computer and use it in GitHub Desktop.
Save michaeljymsgutierrez/1029ee71bfd592cfdf320c989744a55d to your computer and use it in GitHub Desktop.
.htaccess v2
<IfModule mod_rewrite.c>
RewriteEngine On
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