我有一个网站,域名就像https://example.com。现在我的域名是http://example.com。我不想删除SSL证书,我会在4-5天后对其进行续订。因此,到现在为止,如何将用户从我的https重定向到http?
我在htaccess中尝试了一些代码,但是没有用。我正在使用GoDaddy托管。
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}
答案 0 :(得分:0)
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]