From 3f04484b832af804ed2c2a51a81567bd3c0d4822 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 10 Jun 2011 14:15:44 -0700 Subject: [PATCH] Modified default .htaccess to be more consistent with other popular frameworks. --- public/.htaccess | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/public/.htaccess b/public/.htaccess index 1676044f..7bcb61ec 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -1,5 +1,8 @@ -Options +FollowSymLinks -RewriteEngine on -RewriteCond %{REQUEST_FILENAME} !-f -RewriteCond %{REQUEST_FILENAME} !-d -RewriteRule . /index.php [L] \ No newline at end of file + + RewriteEngine on + + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + + RewriteRule ^(.*)$ index.php/$1 [L] + \ No newline at end of file