feat: Adding redirect to https

This commit is contained in:
imtodor 2019-02-07 13:51:35 +02:00
Родитель 383b3deb0c
Коммит 1ca88c31f2
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -31,6 +31,13 @@
<rule name="redirect-" enabled="true" stopProcessing="true">
<match url="^$" />
<action type="Redirect" url="getting-started" />
</rule>
<rule name="Redirect to https" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
</rule>
<rule name="add_html_extension" enabled="true" stopProcessing="true">
<match url="(.*)" />