如何使用.htaccess将子域名重定向到https?我试过这样做:
RewriteCond %{HTTP_HOST} ^sub\.example\.com$ [NC]
RewriteCond %{HTTPS} off
RewriteRule ^ https://sub.example.com%{REQUEST_URI} [R=301,L,NE]
但它不起作用我只是遇到了cloudflare错误。我也试过这个:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
并且它不起作用也只是得到了相同的cloudflare错误