Skip to content

Instantly share code, notes, and snippets.

@jyhsu2000
Created March 8, 2015 17:39
Show Gist options
  • Save jyhsu2000/4fc4f4284a37d303d809 to your computer and use it in GitHub Desktop.
Save jyhsu2000/4fc4f4284a37d303d809 to your computer and use it in GitHub Desktop.
Laravel - .htaccess of preventing redirect-loop
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# no-www
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
# Redirect Trailing Slashes...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Remove index.php from URL
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
# Handle Front Controller...
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