赞
踩
1,准备SSL证书,阿里云有1年免费证书
免费证书有 20个,每年用一个就行
审核通过后下载
下载文件包含证书文件和密码
2.安装重定向模块
如果IIS上默认有安装Web平台安装程序,我们可以使用平台自动安装URL Rewrite重写工具,也可以自行下载urlrewrite2.exe
3.部署
右击需要更改的网站–》点击“编辑绑定”–》类型选择Https–》输入主机名和选择刚才添加的SSL证书(端口就设置为443)
<system.webServer>
<rewrite>
<rules>
<rule name="HTTP2HTTPS" 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>
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。