0

我想将以下链接重定向 http://www.example.com/full-tang-polished-samurai-katana-sword.htmlhttp://www.example.com/final-fantasy-advent-children-cloud-buster-sword.html

我使用了几种方法,包括

Redirect 301 /full-tang-polished-samurai-katana-sword.html http://www.example.com/final-fantasy-advent-children-cloud-buster-sword.html

哪个生产

http://www.example.com/final-fantasy-advent-children-cloud-buster-sword.html?full-tang-polished-samurai-katana-sword.html

我无法处理这个查询字符串

?full-tang-polished-samurai-katana-sword.html

请帮帮我

4

1 回答 1

0

终于解决了这个问题,代码如下

RedirectMatch 301 ^/full-tang-polished-samurai-katana-sword.html$  http://www.example.com/final-fantasy-advent-children-cloud-buster-sword.html
RewriteCond %{QUERY_STRING} ^full-tang-polished-samurai-katana-sword.html$
RewriteRule ^(.*)$ http://www.example.com/final-fantasy-advent-children-cloud-buster-sword.html? [R=301,L]
于 2013-07-23T04:29:32.713 回答