标签: apache url redirect
我的日志中有一些URL,如:
http://www.mysite.com/mypage/?fb_xd_fragment=
我想将此网址重定向到
http://www.mysite.com/mypage
我该怎么做?
答案 0 :(得分:4)
使用此规则:
RewriteEngine On RewriteCond %{QUERY_STRING} fb_xd_fragment= RewriteRule (.*) http://www.domain.com/$1? [R=301]