mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
6b66aee138
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.
6 lines
170 B
ApacheConf
6 lines
170 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^ index.php [L]
|
|
</IfModule>
|