虚拟机使用SSL/https

通过在虚拟机根目录下的web.config文件中添加以下配置即可使用https,具体方法如下:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="301" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_FROM_HTTPS}" pattern="^on$" negate="true" />
</conditions>
<action type="Redirect" url="https://www.baidu.com/{R:1}" redirectType="Permanent" /> # http://www.baidu.com对应修改为您自已的域名,注释请自行删除,不要放入web.config文件内
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
《虚拟机使用SSL/https》版权归逐凨所有
转载请保留原文链接:https://izhizu.com/wordpress/523.html
THE END
分享
二维码
< <上一篇
下一篇>>