Skip to content

Commit

Permalink
Updating htaccess file to use PATH_INFO instead of GET parameters for
Browse files Browse the repository at this point in the history
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
  • Loading branch information
markstory committed Feb 20, 2011
1 parent 633fcba commit 897e50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/webroot/.htaccess
Expand Up @@ -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>

0 comments on commit 897e50b

Please sign in to comment.