搜外网>搜外问答>问答页面

SSL过期后用.htaccess让https重定向301跳转http或http跳转https亲测有效

网站SSL过期后用.htaccess让https重定向301跳转http或http跳转到https 亲测有效 经验贴。

各浏览器站长工具申请https退场

(1)https重定向301跳转http

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_PORT} 443
RewriteRule ^(.*)$ http://www.xxxx.com/[?]$1 [R=301,L]
</IfModule>

(1)http重定向301跳转https

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ http://www.xxxx.com/[?]$1 [R=301,L]
</IfModule>

追加问题
    3 人参与回答

谢谢分享,收藏了

程东
程东 · 免费注册公司就找云算账

嗯,收藏了,用的时候再说

https比较麻烦,免费一年又回来了做http了