-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.config
53 lines (53 loc) · 2.49 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
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^application/[^/]+/resources/.*$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Imported Rule 2" stopProcessing="true">
<match url="^data/sites/[^/]+/resources/.*$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Imported Rule 3" stopProcessing="true">
<match url="^data/resources/.*$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Imported Rule 4" stopProcessing="true">
<match url="^sites/[^/]+/modules/[^/]+/resources/.*$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Imported Rule 5" stopProcessing="true">
<match url="^sites/[^/]+/themes/.*$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Imported Rule 6" stopProcessing="true">
<match url="^docs/.*$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Imported Rule 7" stopProcessing="true">
<match url="^favicon\.ico$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Imported Rule 8" stopProcessing="true">
<match url="^robots\.txt$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Imported Rule 9" stopProcessing="true">
<match url="^.*$" ignoreCase="false" />
<action type="Rewrite" url="index.php" />
</rule>
<rule name="Rule 10" stopProcessing="true">
<match url="^index\.php(/(.*))?$" ignoreCase="false" />
<action type="Redirect" url="/{R:2}>" />
</rule>
<rule name="Rule 11" stopProcessing="true">
<match url="^.*$" ignoreCase="false" />
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>