-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathweb.config
38 lines (38 loc) · 1.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
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<remove name="aspNetCore" />
</handlers>
<rewrite>
<rules>
<remove name="Kendoui php|aspnet-mvc|jsp-ui rewrite" />
<remove name="GitHub redirect web/integration/index.html" />
<rule name="GitHub redirect web/integration/index.html" enabled="false" patternSyntax="ExactMatch" stopProcessing="true">
<match url="web/integration/index.html" />
<conditions />
<serverVariables />
<action type="Redirect" url="https://github.com/kendo-labs/knockout-kendo" appendQueryString="false" />
</rule>
<rule name="Kendoui php|aspnet-mvc|jsp-ui rewrite" enabled="false" patternSyntax="ECMAScript">
<match url=".*" />
<conditions>
<add input="{URL}" pattern="(php-ui|aspnet-mvc|jsp-ui)/(.*)" />
</conditions>
<serverVariables>
<set name="X-KENDO" value="{C:1}" />
</serverVariables>
<action type="None" />
</rule>
</rules>
</rewrite>
</system.webServer>
<system.web>
<customErrors mode="RemoteOnly" />
<compilation debug="false" targetFramework="4.0">
<assemblies>
<clear />
</assemblies>
</compilation>
</system.web>
</configuration>