我有http://www.example.com,我希望它是https://example.com。
我正在使用以下.htaccess规则,但它没有从https://www.example.com正确重定向
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]