myhtaccess代码包含:
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteCond %{HTTP_HOST} www\.
RewriteRule ^ http://xyz23465.com%{REQUEST_URI} [L,R=301,NE]
RewriteCond %{HTTP_HOST} ^52\.71\.19\.242
RewriteRule (.*) http://xyz23465.com/$1 [R=301,L]
但是当我输入https://www.xyz23465.com
时,它会将我重定向到http://xyz23465.com/http://www.xyz23465.com/
,这会成为未找到的网址。
你能建议吗?