将apache上的www https重定向到非www https(CentOS7.2,Apache2.4)

时间:2018-07-07 14:30:36

标签: apache mod-rewrite

我想重定向以下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.comhttp://www.example.com成功,但https://www.example.com不成功。

如何重定向https://www.example.com

0 个答案:

没有答案