[[PageOutline]] = Redirect and Rewrite URL = * http://httpd.apache.org/docs/mod/mod_alias.html#redirect * http://httpd.apache.org/docs/mod/mod_rewrite.html * [http://www.pictnotes.jp/?p=135 Pictnotes » RedirectMatch のリダイレクト先URLで、&(アンパサンド)がある場合] * RedirectMatch のリダイレクト先のURLの中に、&(アンパサンド)がある場合、置換されてしまう。 {{{ RedirectMatch ^/test/? http://www.pictnotes.jp?param1=hoge¶m2=fuga ↓ RedirectMatch ^/test/? http://www.pictnotes.jp?param1=hoge/test RedirectMatch ^(/test/?) http://www.pictnotes.jp?param1=hoge¶m2=fuga ↓ RedirectMatch ^(/test/?) http://www.pictnotes.jp?param1=hogeparam2=fuga (&が消えている状態) }}} * &を使うためには、エスケープしてあげればOK {{{ RedirectMatch ^(/test/?) http://www.pictnotes.jp?param1=hoge\¶m2=fuga & -> \& }}} * [http://ysmt.blog21.fc2.com/blog-entry-216.html Freak: mod_rewriteで動的ページを静的ページっぽいURLにする]