我有一个SSL网站。从http到https的重定向似乎工作正常。我的问题是我应该如何将https://example.com重定向到https://www.example.com 我试过这个,但它没有用。
RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} (.*)
RewriteRule .? https://%1%2 [R=301,L,U,NE]
答案 0 :(得分:2)
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]