要将以“www.dmain.com”开头的流量重定向到“domain.com”,我使用此代码(在SO上找到,被赞成并接受为答案):
RewriteEngine On
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
现在的问题是,当我要求“www.domain.com”时,我被重定向到“domain.com/www/” 如果我要求“www.domain.com/images/img.png”,我会被重定向到“domain.com/www/images/img.png”
当然这两个链接都被打破了。不应附加额外的“www /”:我该如何摆脱它?