1

我正在尝试将所有 https url 重定向到 http。因为我的新服务器没有启用 ssl。

到目前为止,我尝试跟随,但没有一个起作用。

RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ http://%{SERVER_NAME}%{REQUEST_URI} [R=301] 

RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ http://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]

RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
4

1 回答 1

1

尝试 :

RewriteCond %{HTTPS} =on
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]   
于 2012-09-01T10:17:01.853 回答