标签: 虚拟机怎么使用https

  • 虚拟机怎么使用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" /> # www.baidu.com对应修改为您自已的域名,注释请自行删除,不要放入web.config文件内
    </rule>
    </rules>
    </rewrite>
    </system.webServer>
    </configuration>