13 lines
310 B
ApacheConf
13 lines
310 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
Options +FollowSymlinks
|
|
RewriteEngine On
|
|
|
|
# Explicitly disable rewriting for front controllers
|
|
RewriteRule ^index.php - [L]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
# Change below before deploying to production
|
|
RewriteRule ^(.*)$ index.php [QSA,L]
|
|
</IfModule>
|