-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.htaccess
24 lines (22 loc) · 948 Bytes
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#Options -Multiviews
RewriteEngine On
RewriteBase /schedule/
RewriteRule ^sqf$ sqf.php [QSA,L]
RewriteRule ^mods$ mods.php [QSA,L]
RewriteRule ^menu$ menu.php [QSA,L]
RewriteRule ^quickstart$ quickstart.php [QSA,L]
RewriteRule ^quickstart_ru$ quickstart?lang=ru [QSA,L]
RewriteRule ^privacy_policy$ privacy_policy.php [QSA,L]
RewriteRule ^install_scripts$ installationscripts.php [QSA,L]
RewriteRule ^dedicated_server$ installdedicated.php [QSA,L]
RewriteRule ^api$ api.php [QSA,L]
RewriteRule ^api_documentation$ api_documentation.php [QSA,L]
RewriteRule ^recent_activity$ recent_activity.php [QSA,L]
RewriteRule ^rss$ rss.php [QSA,L]
RewriteRule ^allmods$ allmods.php [QSA,L]
RewriteRule ^allservers$ allservers.php [QSA,L]
RewriteRule ^mod_updates$ modupdates.php [QSA,L]
RewriteCond %{REQUEST_URI} preview_install.php
RewriteCond %{QUERY_STRING} ^(.*)id(.*)$
RewriteRule ^(.*)$ $1?%1mod%2
RewriteRule ^preview_install.php$ show.php [R=301,L]