mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
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:
parent
633fcba4e8
commit
897e50b09f
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
Loading…
Add table
Reference in a new issue