-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathweb.config
24 lines (21 loc) · 877 Bytes
/
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
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="claimrule" enabled="false">
<match url="/(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="/" />
</rule>
<rule name="redirect all" enabled="true" stopProcessing="true">
<match url="/*" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="." logRewrittenUrl="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>