我应该如何将 https 地址 301 重定向到 http 地址?

我应该如何将 https 地址 301 重定向到 http 地址?

我最近将我的网站移至了一个新域名。

之前的域名安装了 SSL,并且https://example.com。我的新域名是http://newexample.com并且它没有 SSL。我使用 Google 网站管理员工具更改了我的网站地址,但它无法验证 301 重定向。

我如何进行 301 重定向https://example.comhttp://newexample.com使用.htaccess?

答案1

这应该可以做到:

RewriteEngine On
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com$ [NC]
RewriteRule (.*) http://newexample.com%{REQUEST_URI} [R=301,L]

相关内容