如何使用.htaccess?

时间:2014-08-19 15:44:44

标签: .htaccess

需要使用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也需要补充现有规则,对不起我的英语)

1 个答案:

答案 0 :(得分:0)

Rewritebase /下添加:

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