这样的问题。我们有没有ssl证书的旧站点
example.com
他的页面已经在Google中编入索引
我们使用ssl创建了新站点
if( url == '/some' ) {
header('HTTP/1.1 301 Moved Permanently');
header( 'Location: https://example.com/some' );
}
并从旧站点重定向301
example1.com/some_link
但是当我们在Google“某些关键字”中进行搜索时,我们会收到旧的域链接
https://example.com/some_link
并重定向到
后{{1}}
我们收到ssl错误“连接不安全”,但浏览器显示证书有效
该如何解决?