Redirect trailing slashes with 301.

This commit is contained in:
Taylor Otwell 2013-04-09 15:37:50 -05:00
parent b2a1c9be53
commit 343c31e5db
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,10 @@
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>