繁体   English   中英

将所有非www重定向到https非www

[英]redirect all www non-www to https non-www

我有一个example.com网站,我想重定向以下网址-

www.example.com
example.com
https://www.example.com

https://example.com

到目前为止,我尝试过的是-

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.*)$ [NC]
RewriteRule (.*) https://%1%{REQUEST_URI} [L,R=301]

除了https://www.example.com之外,这种气体效果很好

感谢帮助!! 谢谢

您的RewriteCond不适合您的要求。

您可以使用如下规则:

RewriteEngine On

RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteRule ^ https://example.com%{REQUEST_URI} [L,R=301,NE]

或使用www.example.com

RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.example.com%{REQUEST_URI} [L,R=301,NE]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM