我想将所有非 https 请求重定向到 https,但子域的请求除外。例如
http://example.com/ => https://example.com/
http://example.com/page => https://example.com/page
但
http://m.example.com/ REMAINS http://m.example.com/
这就是我在 .htaccess 中的内容,它重定向所有请求(包括子域):
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
我知道我必须在 RewriteRule 之前添加一个条件,但我不太确定语法。