使用以下规则,当我输入网址www.mywebsite.com
时,我被重定向到mywebsite.com/www
。为什么?
我需要重定向到mywebsite.com
。
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.mywebsite.com [NC]
RewriteRule ^(.*)$ http://mywebsite.com/$1 [L,R=301,NE]
示例:
www.mywebsite.com
重定向到=> mywebsite.com/www
|需要=> mywebsite.com
www.mywebsite.com/folder
重定向到=> mywebsite.com/www/folder
|需要=> mywebsite.com/folder
由于
答案 0 :(得分:0)
尝试此解决方法
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.mywebsite\.com [NC]
RewriteCond %{THE_REQUEST} \s(\/\S*)\s
RewriteRule ^ http://mywebsite.com/%1 [L,R=301]