7 lines
203 B
ApacheConf
7 lines
203 B
ApacheConf
#Rewrite index.php out of the app urls
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond $1 !^(public)
|
|
RewriteRule ^(.*)$ index.php/$1 [L] |