虚拟机怎么使用https

主机教程 建站分享 2年前 (2022-12-09) 541次浏览

文章摘要:虚拟机怎么使用https

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

通过在虚拟机根目录下的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>


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:虚拟机怎么使用https
文章链接:http://www.7966.org/post/13864.html
转载请注明出处

喜欢 (0)