11 lines
338 B
ApacheConf
11 lines
338 B
ApacheConf
# Remove the question mark from the request but maintain the query string
|
|
RewriteEngine On
|
|
|
|
# Uncomment the following line if your public folder isn't the web server's root
|
|
# RewriteBase /
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-l
|
|
RewriteRule ^(.*)$ index.php?$1 [L,QSA]
|