Ssl

我應該如何 301 將 https 地址重定向到 http 地址?

  • July 28, 2015

我最近將我的網站移到了一個新域。

以前的域安裝了 SSL,它是https://example.com>。我的新域是<http://newexample.com,它沒有 SSL。我使用Google網站管理員工具更改了我的網站地址,但它無法驗證 301 重定向。

如何使用 .htaccess將https://example.com 301 重定向到http://newexample.com ?

這應該這樣做:

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

引用自:https://serverfault.com/questions/709162