mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
e07256b6d4
compatibility with shared hosting servers. Fixes #2010
6 lines
183 B
ApacheConf
6 lines
183 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
|
|
</IfModule>
|