9 lines
211 B
ApacheConf
9 lines
211 B
ApacheConf
|
|
Options -Indexes
|
||
|
|
|
||
|
|
RewriteEngine On
|
||
|
|
|
||
|
|
# Route all requests through index.php (front controller)
|
||
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
|
RewriteRule ^(.*)$ index.php?path=$1 [QSA,L]
|