Fix redirect loop .htaccess

Folders that exist have a redirect loop when visiting them. This is because Apache redirects to trailing slash for folders and the current rule is removing it, Apache then adds a trailing slash again.
This commit is contained in:
Ben Sampson 2015-06-26 14:26:44 +01:00
parent a9ca36a8ca
commit dd036f559b
1 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,8 @@
RewriteEngine On RewriteEngine On
# Redirect Trailing Slashes... # Redirect Trailing Slashes but not for folders...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301] RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller... # Handle Front Controller...