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
This commit is contained in:
mark_story 2011-02-19 22:23:17 -05:00
parent 633fcba4e8
commit 897e50b09f

View file

@ -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]
</IfModule>