我的mycooldomain.com.conf(apache2)
中有这一行 Redirect permanent / https://mycooldomain.com
重定向到https。 我想要做的是将子域重定向到http,而所有域请求都通过https 例如: mycooldomain.com/help将重定向到https://mycooldomain.com 而user.mycooldomain.com/blah将重定向到http://user.mycooldomain.com 现在,子域名也被发送到https
答案 0 :(得分:0)
添加重写规则:
RewriteEngine on
RewriteCond %{HTTP_HOST} user.mycooldomain.com
RewriteRule ^(.*)$ http://user.mycooldomain.com/$1 [QSA, R=301, L]
Redirect permanent / https://mycooldomain.com