forked from telerik/xaml-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.config
67 lines (60 loc) · 2.54 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
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<clear />
</appSettings>
<system.web>
<httpRuntime maxRequestLength="102400" maxUrlLength="102400" maxQueryStringLength="10000" requestValidationType="System.Web.Util.RequestValidator" />
<httpModules>
<clear />
</httpModules>
<httpHandlers>
<clear />
</httpHandlers>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<rewrite>
<rewriteMaps configSource="redirect.config" />
<rules>
<rule name="index" enabled="true" stopProcessing="true">
<match url="^/?$" />
<action type="Redirect" url="introduction" redirectType="Found" />
</rule>
<rule name="docking_save_load_layout" enabled="true" stopProcessing="true">
<match url="^controls/raddocking/features/save-load-layout$" />
<action type="Redirect" url="controls/raddocking/features/save-load-layout/overview" />
</rule>
<rule name="docking_save_load_layout_with_html" enabled="true" stopProcessing="true">
<match url="^controls/raddocking/features/save-load-layout.html$" />
<action type="Redirect" url="controls/raddocking/features/save-load-layout/overview" />
</rule>
<rule name="Rule for redirects">
<match url=".*" />
<conditions>
<add input="{Redirect:{REQUEST_URI}}" pattern="(.+)" />
</conditions>
<action type="Redirect" url="{C:1}" appendQueryString="true" />
</rule>
<rule name="add_html_extension" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}.html" matchType="IsFile" />
</conditions>
<action type="Rewrite" url="{R:1}.html" />
</rule>
</rules>
</rewrite>
<httpProtocol>
<customHeaders>
<add name="Cache-Control" value="no-cache" />
</customHeaders>
</httpProtocol>
<staticContent>
<remove fileExtension=".json" />
<mimeMap fileExtension=".json" mimeType="application/json" />
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
</staticContent>
</system.webServer>
</configuration>