安裝“URL REWRITE2 ” 偽靜態(tài)模塊IIS7需要先確認是否安裝 “URL REWRITE2 ” 偽靜態(tài)模塊 , 如果您已經安裝可以跳過 下載地址 : http://www.iis.net/downloads/microsoft/url-rewrite 選擇站點URL 重寫,如果安裝的是英文版的 應該是【Url rewrite】 添加 “ 空白規(guī)則”添加規(guī)則名稱 : HTTPS 匹配URL 模式: (.*) 添加條件: 條件: {HTTPS} 模式: off 操作類型選擇:重定向 重定向URL:https://{HTTP_HOST}/{R:1} 然后保存即可 高級版直接把偽靜態(tài)添加到web.config <?@xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="HTTP to HTTPS redirect" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="off" ignoreCase="true" /> </conditions> <action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration> |