2

特定のパラメータ値を持つ URL を新しい URL にリダイレクトするための助けが必要です。たとえば、ID 123 と 345 のこれら 2 つの URL を新しい URL にリダイレクトするにはどうすればよいですか?

リダイレクト

http://testserver.xyz.com/abc/content/content.jsp?contentId=123 http://testserver.xyz.com/abc/content/content.jsp?contentId=345

https://newpage.silkroad.com/

どんな助けでも大歓迎です

ティア

4

1 に答える 1

1

mod_rewrite を使用して、これらのルールをドキュメント ルートの htaccess ファイル、または vhost/server 構成に追加します。

RewriteEngine On
RewriteCond %{QUERY_STRING} contentId=123 [OR]
# add however any more id's here, with `[OR]` flags
RewriteCond %{QUERY_STRING} contentId=345 
RewriteRule ^/?abc/content/content\.jsp$ https://newpage.silkroad.com/? [L,R=301]
于 2012-09-24T16:42:35.490 に答える