mod_rewrite重定向可以抢占域上的证书错误吗?

时间:2016-05-13 16:44:07

标签: .htaccess mod-rewrite

我正在尝试将流量从旧网站重定向到新网站,旧网站上的https证书已过期,我不想续订,因为它已不再使用。但是,如果有人浏览旧的https站点,则他们收到证书错误并且未被重定向。我试过的代码如下:

RewriteCond %{HTTP_HOST} ^oldsite.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.oldsite.com [NC,OR]
RewriteCond %{HTTPS} ^oldsite.com [NC,OR]
RewriteCond %{HTTPS} ^www.oldsite.com [NC]
RewriteRule ^(.*)$ http://www.newsite.com/$1 [L,R=301,NC]

当有人浏览https://www.oldsite.com

时,这会导致出现证书警告

0 个答案:

没有答案