0

http://www.example.com/full-tang-polished-samurai-katana-sword.html次のリンクをリダイレクトしたい http://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 に答える