我已经工作了几个小时。总有一些东西不起作用。
我有两个域example.com
和example.de
。
我想将所有内容从example.com
重定向到example.de
并设置https://www
。
重定向后,我希望始终https://www.example.de
(https
和www
以及de
域名。
以下需要重定向到https://www.example.de
:
http://example.com
http://www.example.com
https://example.com
https://www.example.com
http://example.de
http://www.example.de
https://example.de
有没有人可以帮助我?
答案 0 :(得分:0)
您可以使用:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.example\.de$ [OR]
RewriteCond %{HTTPS} off
RewriteRule ^ https://www.example.de%{REQUEST_URI} [NE,R=301,L]