-
Notifications
You must be signed in to change notification settings - Fork 54
/
Web.config
24 lines (24 loc) · 967 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
<?xml version="1.0"?>
<configuration>
<system.webServer>
<defaultDocument enabled="true">
<files>
<add value="mha.html"/>
</files>
</defaultDocument>
<!--<directoryBrowse enabled="true" />-->
<staticContent>
<clientCache cacheControlMode="DisableCache"/>
</staticContent>
<httpRedirect enabled="true" httpResponseStatus="Permanent">
<add wildcard="Pages\Default.html" destination="Pages\uitoggle.html?default=classic"/>
<add wildcard="Pages\DefaultPhone.html" destination="Pages\uitoggle.html?default=classic"/>
<add wildcard="Pages\DefaultTablet.html" destination="Pages\uitoggle.html?default=classic"/>
<add wildcard="Pages\DesktopPane.html" destination="Pages\uitoggle.html?default=new"/>
<add wildcard="Pages\MobilePane-ios.html" destination="Pages\uitoggle.html?default=new-mobile"/>
</httpRedirect>
</system.webServer>
<system.web>
<compilation debug="true" targetFramework="4.8"/>
</system.web>
</configuration>