选择站点URL 重写,如果安装的是英文版的 应该是【Url rewrite】 
添加 “ 空白规则”
添加规则名称 : HTTPS 匹配URL 模式: (.*) 添加条件: 条件: {HTTPS} 模式: off 操作类型选择:重定向 重定向URL:https://{HTTP_HOST}/{R:1}
然后保存即可
规则写法 直接把伪静态添加到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>
|