我想重定向以下URL。
http://example.com
http://www.example.com
https://www.example.com
到
https://example.com
以下内容在httpd.conf中进行了描述。
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteRule ^ https://example.com%{REQUEST_URI} [L,NE,R=301]
</ifModule>
http://example.com
和http://www.example.com
成功,但https://www.example.com
不成功。
如何重定向https://www.example.com
?