【Apache】mod_rewriteについて語るスレ

このエントリーをはてなブックマークに追加
386nobodyさん
301でサイト移動をする場合に関数に色々な値があるのをそれぞれリダイレクトさせたい場合
一挙に書くにはどうすればいいでしょうか?


1つ1つ書くと下記のようなのを1つにしたいです。

Redirect 301 /index.php?a=1 "http://www.example.jp/index.php?a=1"
Redirect 301 /index.php?a=2 "http://www.example.jp/index.php?a=2"
Redirect 301 /index.php?a=3 "http://www.example.jp/index.php?a=3"
 ・
 ・
 ・
Redirect 301 /index.php?a=a1 "http://www.example.jp/index.php?a=a1"
Redirect 301 /index.php?a=b2 "http://www.example.jp/index.php?a=b2"
Redirect 301 /index.php?a=c3 "http://www.example.jp/index.php?a=c3"
 ・
 ・
 ・