.htaccess重定向工作不正常

时间:2016-09-30 11:02:55

标签: apache .htaccess redirect

我在htaccess中有以下代码

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=302,L]

RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=302,L]

我写了网址 - > http://www.example.com它重定向到http://example.com - 它的工作正确。 我写了网址 - > www.example.com它重定向到http://www./www.example.com - 效果不佳。

我不确定我做错了什么,特别是在这部分

  RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=302,L]

0 个答案:

没有答案