-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.config
81 lines (81 loc) · 4.98 KB
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule Brain">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule HK">
<match url="adminpan/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="adminpan/index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Rule 112">
<match url="^/habbo-imaging/badge/([^/]+)" ignoreCase="false" />
<action type="Rewrite" url="swf/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="news/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/index.php?url=news&id={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 131234" stopProcessing="true">
<match url="home/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/index.php?url=home&user={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule HK Users" stopProcessing="true">
<match url="adminpan/gebruiker/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/adminpan/index.php?url=gebruiker&user={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule HK Sollielook" stopProcessing="true">
<match url="adminpan/sollielook/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/adminpan/index.php?url=sollielook&look={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule HK DeleteNews" stopProcessing="true">
<match url="adminpan/news/delete/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/adminpan/index.php?url=news&delete={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule HK DeleteSollie" stopProcessing="true">
<match url="adminpan/sollielook/delete/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/adminpan/index.php?url=sollielook&delete={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule HK EditNews" stopProcessing="true">
<match url="adminpan/news/edit/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/adminpan/index.php?url=editnews&news={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule HK DeleteBan" stopProcessing="true">
<match url="adminpan/bans/delete/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/adminpan/index.php?url=bans&delete={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule HK GiveUODW" stopProcessing="true">
<match url="adminpan/giveuseroftheweek/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/adminpan/index.php?url=giveuseroftheweek&user={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule User Ref" stopProcessing="true">
<match url="register/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/index.php?url=register&userref={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule User Pas" stopProcessing="true">
<match url="newpassword/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/index.php?url=newpassword&key={R:1}" appendQueryString="false" />
</rule>
<rule name="Habbo Imaging Group Badges">
<match url="^habbo-imaging/badges/([^/]+)" ignoreCase="false" />
<action type="Rewrite" url="/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
</rule>
<rule name="Habbo Imaging Avatarimage 1">
<match url="^habbo-imaging/avatar/([^/]+)" ignoreCase="false" />
<action type="Rewrite" url="habbo-imaging/avatarimage.php?figure={R:1}" appendQueryString="false" />
</rule>
<rule name="Habbo Imaging Avatar Image 2">
<match url="^habbo-imaging/avatarimage/([^/]+)" ignoreCase="false" />
<action type="Rewrite" url="habbo-imaging/avatarimage.php?username={R:1}" appendQueryString="false" />
</rule>
<rule name="Habbo Imaging Avatar Head">
<match url="^habbo-imaging/head/([^/]+)" ignoreCase="false" />
<action type="Rewrite" url="habbo-imaging/head.php?figure={R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>