我在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]