我正在尝试将https://www.bar.com重定向到https://www.foo.com。为什么下面的Apache配置没有这样做? (当我访问https://www.bar.com时,我得到200 OK,我指向localhost进行测试。)
RewriteCond %{HTTP_HOST} www\.bar\.com [NC]
RewriteCond %{HTTPS} on
RewriteRule ^/?(.*) https://www.foo.com/$1 [L,R,NE]