我正在尝试执行以下操作:
将 www 添加到非安全 http://domain[.]com 到 http://www.domain[.]com
&
将安全 https://www[.]domain.com 上的 www 删除为 https://domain[.]com
我正在尝试这个,但似乎不起作用
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^example.org$
RewriteRule ^(.*)$ http://www.example.org/$1 [R=301,L]
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^example.org$
RewriteRule ^(.*)$ https://example.org/$1 [R=301,L]