Tweak front controller. Htaccess.

This commit is contained in:
Taylor Otwell
2013-10-26 11:27:40 -05:00
parent 29fc9f694d
commit ce64714b2f
2 changed files with 6 additions and 46 deletions

View File

@@ -2,6 +2,10 @@
Options -MultiViews
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]