子域的http和主域的https不起作用

时间:2018-06-19 17:01:32

标签: .htaccess

我正在尝试

https://www.example.com

http://test.example.com

但是当我尝试http://test.example.com时,它一直被重定向到https://www.example.com

我该如何解决?

# maindomain -> https
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(?:www\.)?(example\.com)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [R,L]

# subdomain -> http
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^(?:www\.)?(test\.example\.com)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [R,L]

0 个答案:

没有答案