From 897e50b09f58cb320723fe30f5f2e4f373124550 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sat, 19 Feb 2011 22:23:17 -0500 Subject: [PATCH] Updating htaccess file to use PATH_INFO instead of GET parameters for handling cake request strings. This fixes issues where cake's usage of url could conflict with other uses. Using PATH_INFO makes for a more consistent and simple implementation as well. Fixes #1483 --- app/webroot/.htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/webroot/.htaccess b/app/webroot/.htaccess index f9d8b938b..8e7f16397 100644 --- a/app/webroot/.htaccess +++ b/app/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