最新文章:
- Google Map api国内正常使用该如何配置(2021最新)
- wordpress国内网速慢加速及防DDOS攻击快速CF切换教程
- 2.18-3.31,共战疫情,阿里云免费送.网址域名
- Ubuntu安装时出现“failed to load ldlinux.c32”
- iconv函数报错 Detected an illegal character in input string
首页 Web技术
IIS7将HTTPS重定向到HTTP
发布时间:2019年10月28日 评论数:抢沙发 阅读数:4848
网上的教程大部分都是http重定向到https的,但是有些网站清退https的时候,百度收录的都是https的链接,现在就需要把https重定向回http。
.htaccess方式
RewriteCond %{SERVER_PORT} !^80$
RewriteCond %{HTTP_USER_AGENT} !MSIE/[1-8]\. [NC]
RewriteCond %{HTTP_HOST} xxx.com
RewriteRule ^.*$ http://xxx.com%{REQUEST_URI} [L,R=301]
IIS web.config方式
<rewrite>
<rules>
<rule name="https to http" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^ON$" />
</conditions>
<action type="Redirect" url="http://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
本文地址:http://www.90qj.com/545.html 本文已经被百度收录,点击查看详情
版权声明:若无注明,本文皆为“挨踢 Blog”原创,转载请保留文章出处。