赞
踩
不啰嗦,我们直接开始!
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <system.webServer>
- <rewrite>
- <rules>
- <rule name="HTTP to HTTPS redirect" 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>
- </configuration>
名称:HTTP to HTTPS redirect
模式:(.*)
条件输入:{HTTPS}
模式:off 或 ^OFF$
重定向URL:https://{HTTP_HOST}/{R:1}
重定向类型:已找到(302) 或 参阅其它(303)
通过http访问站点,若自动重定向至https则配置成功!
不啰嗦,文章结束,建议三连!
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。