-
Notifications
You must be signed in to change notification settings - Fork 21
/
web.config
27 lines (27 loc) · 942 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
25
26
27
<!-- This file is used because the demo hosting is done on an IIS server -->
<configuration>
<system.webServer>
<staticContent>
<!-- Add MIME type because IIS doesn't serve the SVG file type by default -->
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
</staticContent>
<!-- DEMO Only: Redirect requests into the root of the site, right to the index. -->
<httpRedirect enabled="true" destination="demos-php" httpResponseStatus="Temporary" />
</system.webServer>
<!-- DEMO Only: Turn off the redirect from above for the child folders -->
<location path="demos-php">
<system.webServer>
<httpRedirect enabled="false" />
</system.webServer>
</location>
<location path="dist-php">
<system.webServer>
<httpRedirect enabled="false" />
</system.webServer>
</location>
<location path="wet-boew">
<system.webServer>
<httpRedirect enabled="false" />
</system.webServer>
</location>
</configuration>