mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
15 lines
515 B
ApacheConf
15 lines
515 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
|
|
RewriteRule ^app/query(/)?(.*)$ query.php$1 [QSA,L]
|
|
RewriteRule ^app/report(/)?(.*)$ report.php$1 [QSA,L]
|
|
RewriteRule ^app/stats(/)?(.*)$ stats.php$1 [QSA,L]
|
|
RewriteRule ^app/login(/)?(.*)$ login.php$1 [QSA,L]
|
|
RewriteRule ^app/logout(/)?(.*)$ logout.php$1 [QSA,L]
|
|
RewriteRule ^privacy(/)? privacy.php$1 [QSA,L]
|
|
RewriteRule ^service(/)? service.php$1 [QSA,L]
|
|
RewriteRule ^app index.php [QSA,L]
|
|
|
|
#Static Content
|
|
RewriteRule ^(scripts|styles)$/(.*)$ $1/$2 [QSA,L]
|
|
</IfModule> |