8 lines
192 B
ApacheConf
8 lines
192 B
ApacheConf
RewriteEngine On
|
|
|
|
# Send all requests to index.php (except existing files/directories)
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^ index.php [QSA,L]
|
|
|