本文最后更新于 509 天前,文中的信息可能已经有所变化。如有误,请留言反馈。
通过在虚拟机根目录下的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>
使用中[f=yinxian]