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>