Skip to content

Instantly share code, notes, and snippets.

@hoanglamhuynh
Created May 8, 2014 04:06
Show Gist options
  • Select an option

  • Save hoanglamhuynh/f3bef4f893990c807fe3 to your computer and use it in GitHub Desktop.

Select an option

Save hoanglamhuynh/f3bef4f893990c807fe3 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.php [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment