需要使用SEO自动重定向到https://www....
,我有该代码
Options +FollowSymlinks
Options -Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] // that for SEO variable
如果客户使用http://
自动重定向到https://www.*
并且使用https://name.com
(不www.
)自动重定向到https://www.*
,我该怎么办?对于SEO来说,变量$ 1也需要补充现有规则,对不起我的英语)
答案 0 :(得分:0)
在Rewritebase /
下添加:
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [L,R=301]