wiki:TipAndDoc/network/httpd/URLRedirect

Version 2 (modified by mitty, 13 years ago) (diff)

--

Redirect and Rewrite URL

  • Pictnotes » RedirectMatch のリダイレクト先URLで、&(アンパサンド)がある場合
    • RedirectMatch のリダイレクト先のURLの中に、&(アンパサンド)がある場合、置換されてしまう。
      RedirectMatch ^/test/?  http://www.pictnotes.jp?param1=hoge&param2=fuga
      ↓
      RedirectMatch ^/test/? http://www.pictnotes.jp?param1=hoge/test
      
      RedirectMatch ^(/test/?)  http://www.pictnotes.jp?param1=hoge&param2=fuga
      ↓
      RedirectMatch ^(/test/?)  http://www.pictnotes.jp?param1=hogeparam2=fuga
      (&が消えている状態)
      
    • &を使うためには、エスケープしてあげればOK
      RedirectMatch ^(/test/?)  http://www.pictnotes.jp?param1=hoge\&param2=fuga
      & -> \&