Skip to content

Instantly share code, notes, and snippets.

@h26k2
Created June 25, 2019 10:40
Show Gist options
  • Save h26k2/18ee8d31fd43448f7b5f86b8b32a710b to your computer and use it in GitHub Desktop.
Save h26k2/18ee8d31fd43448f7b5f86b8b32a710b to your computer and use it in GitHub Desktop.
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment