12 lines
276 B
ApacheConf
12 lines
276 B
ApacheConf
Options -MultiViews
|
|
Options -Indexes
|
|
|
|
RewriteEngine On
|
|
# Uncomment the below if the code is not on the root level
|
|
# RewriteBase /
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-l
|
|
|
|
RewriteRule ^(.*)$ index.php [QSA,L]
|