我正在尝试的是:
RewriteEngine on
RewriteCond %{HTTP_HOST} !=""
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS} ^on(s)|
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
杜曼http://example.com
和https://example.com
均有效。第一个应该重定向到安全版本。我究竟做错了什么 ?我看了看周围的许多文章,但无法解决问题。谢谢!