mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
use a simpler rewrite rule
The capture group isn't used - so don't captuer it There are no get args in the rewrite rule so there's no need to request appending the existing get args - they are unmodified.
This commit is contained in:
parent
94db8fbed6
commit
6b66aee138
2 changed files with 2 additions and 2 deletions
|
@ -2,5 +2,5 @@
|
|||
RewriteEngine On
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^(.*)$ index.php [QSA,L]
|
||||
RewriteRule ^ index.php [L]
|
||||
</IfModule>
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
RewriteEngine On
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^(.*)$ index.php [QSA,L]
|
||||
RewriteRule ^ index.php [L]
|
||||
</IfModule>
|
||||
|
|
Loading…
Reference in a new issue