将所有网址重定向到no-www https

时间:2016-09-06 14:06:33

标签: .htaccess url-rewriting url-redirection friendly-url

我想通过.htaccess将所有请求转发到域名。

所有内容:https://domain.tdl

  • 无WWW
  • HTTPS

我尝试了很多拼写,但它并没有完全奏效。

1 个答案:

答案 0 :(得分:2)

我认为以下一套规则集应该有效:

RewriteEngine On

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