このページに関してのお問い合わせはこちら
【Apache】mod_rewriteについて語るスレ
ツイート
386
:
nobodyさん
:
2009/09/03(木) 20:22:37 ID:54RqrMPZ
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
"
・
・
・