forked from coolzoom/wcms-WoW-Armory-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.config
66 lines (66 loc) · 3.41 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
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="_content" stopProcessing="true">
<match url="_content/" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="None" />
</rule>
<rule name="_data" stopProcessing="true">
<match url="_data/" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="None" />
</rule>
<rule name="_layout" stopProcessing="true">
<match url="_layout/" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="None" />
</rule>
<rule name="data/" stopProcessing="true">
<match url="data/" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="None" />
</rule>
<rule name="models/" stopProcessing="true">
<match url="models/" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="None" />
</rule>
<rule name="_images" stopProcessing="true">
<match url="_images/" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="None" />
</rule>
<rule name="Imported Rule 1" enabled="true">
<match url="^(.*).xml" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="{R:1}.php?{QUERY_STRING}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 2" enabled="true">
<match url="character-feed.atom" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="character-feed-atom.php?{QUERY_STRING}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 3" enabled="true">
<match url="^(.*).html" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="{R:1}.php?{QUERY_STRING}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 4" enabled="true">
<match url="^(.*).htm" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="{R:1}.php?{QUERY_STRING}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
<staticContent>
<remove fileExtension=".xsl" />
<remove fileExtension=".xslt" />
<mimeMap fileExtension=".xslt" mimeType="text/xslt" />
<mimeMap fileExtension=".xsl" mimeType="text/xsl" />
</staticContent>
</system.webServer>
</configuration>