2017-01-30 17:29:45 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<configuration>
|
|
|
|
<system.webServer>
|
2017-02-11 04:15:01 +00:00
|
|
|
<rewrite>
|
2017-02-11 04:18:02 +00:00
|
|
|
<rules>
|
2017-02-11 04:15:01 +00:00
|
|
|
<rule name="Redirect to HTTPS" stopProcessing="false">
|
2017-02-11 04:18:02 +00:00
|
|
|
<match url="(.*)" />
|
|
|
|
<conditions>
|
|
|
|
<add input="{HTTPS}" pattern="^OFF$" />
|
|
|
|
</conditions>
|
|
|
|
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
|
|
|
|
</rule>
|
|
|
|
</rules>
|
2017-02-11 04:15:01 +00:00
|
|
|
</rewrite>
|
2017-01-30 17:29:45 +00:00
|
|
|
<defaultDocument>
|
|
|
|
<files>
|
|
|
|
<clear />
|
|
|
|
<add value="index.html" />
|
|
|
|
<add value="Default.htm" />
|
|
|
|
<add value="Default.asp" />
|
|
|
|
<add value="index.htm" />
|
|
|
|
<add value="iisstart.htm" />
|
|
|
|
<add value="default.aspx" />
|
|
|
|
</files>
|
|
|
|
</defaultDocument>
|
|
|
|
</system.webServer>
|
|
|
|
</configuration>
|