我有多个域e。 G。 example.com和example.org指向同一台服务器。我想将所有http请求重定向到https,但也希望用户留在同一域中。所以
http://example.com应该直接指向https://example.com和
http://example.org应该直接指向https://example.org
我尝试将以下代码添加到我的配置中,但是它陷入了从.com重定向到.org并再次返回的循环中
<VirtualHost *:80>
ServerName example.org
Redirect 301 / https://example.org
</VirtualHost>
<VirtualHost *:80>
ServerName example.com
Redirect 301 / https://example.com
</VirtualHost>
我可以通过apache实现此行为吗?我的httpd.conf应该是什么样的?我必须使用ServerAlias吗?