在iis中設置默認訪問https的方法
1.首先,在計算機中使用組合鍵“win+R”運行“Inetmgr”,打開iis管理器;
2.進入到iis管理器頁面后,在頁面中選擇對應的站點;
3.在站點右側菜單欄中,選擇“URL重寫”模塊,并雙擊打開,添加規則;
4.最后,規則添加好后,在Web.config文件中添加以下配置即可;
<system.webServer>
<rewrite>
<rules>
<rule name="redirect to https" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
<add input="{HTTPS_HOST}" pattern="^(localhost)" negate="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
</rule>
</rules>
</rewrite>
</system.webServer>