Skip to content

Instantly share code, notes, and snippets.

@trungx
Forked from joellongie/.htaccess
Created January 21, 2021 10:21
Show Gist options
  • Save trungx/0003b6e171ac7bfdb7eabd404b70ce30 to your computer and use it in GitHub Desktop.
Save trungx/0003b6e171ac7bfdb7eabd404b70ce30 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