mirror of
https://github.com/flarum/flarum.git
synced 2025-12-15 00:00:28 -05:00
11 lines
257 B
ApacheConf
11 lines
257 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine on
|
|
|
|
RewriteRule ^api(.*)$ api.php [QSA,L]
|
|
RewriteRule ^admin(.*)$ admin.php [QSA,L]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^(.*)$ index.php [QSA,L]
|
|
</IfModule>
|