来自其他网站的错误网址?fb_xd_fragment = redirect

时间:2011-11-06 15:25:20

标签: apache url redirect

我的日志中有一些URL,如:

http://www.mysite.com/mypage/?fb_xd_fragment=

我想将此网址重定向到

http://www.mysite.com/mypage

我该怎么做?

1 个答案:

答案 0 :(得分:4)

使用此规则:

RewriteEngine On
RewriteCond %{QUERY_STRING} fb_xd_fragment=
RewriteRule (.*) http://www.domain.com/$1? [R=301]