7 lines
194 B
ApacheConf
7 lines
194 B
ApacheConf
RewriteEngine On
|
|
|
|
# Let the front controller handle everything except itself
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_URI} !=/api/index.php
|
|
RewriteRule ^(.*)$ index.php [QSA,L]
|