From 21905967643ec0492cf241243e84f999f84f16cf Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 20 Feb 2011 13:57:38 -0500 Subject: [PATCH] Fixing htaccess file to not use GET params anymore. --- cake/console/templates/skel/webroot/.htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/console/templates/skel/webroot/.htaccess b/cake/console/templates/skel/webroot/.htaccess index f9d8b938bdb..8e7f16397b2 100644 --- a/cake/console/templates/skel/webroot/.htaccess +++ b/cake/console/templates/skel/webroot/.htaccess @@ -2,5 +2,5 @@ RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f - RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] + RewriteRule ^(.*)$ index.php/$1 [QSA,L] \ No newline at end of file