| 6 | |
| 7 | * [http://www.pictnotes.jp/?p=135 Pictnotes » RedirectMatch のリダイレクト先URLで、&(アンパサンド)がある場合] |
| 8 | * RedirectMatch のリダイレクト先のURLの中に、&(アンパサンド)がある場合、置換されてしまう。 |
| 9 | {{{ |
| 10 | RedirectMatch ^/test/? http://www.pictnotes.jp?param1=hoge¶m2=fuga |
| 11 | ↓ |
| 12 | RedirectMatch ^/test/? http://www.pictnotes.jp?param1=hoge/test |
| 13 | |
| 14 | RedirectMatch ^(/test/?) http://www.pictnotes.jp?param1=hoge¶m2=fuga |
| 15 | ↓ |
| 16 | RedirectMatch ^(/test/?) http://www.pictnotes.jp?param1=hogeparam2=fuga |
| 17 | (&が消えている状態) |
| 18 | }}} |
| 19 | * &を使うためには、エスケープしてあげればOK |
| 20 | {{{ |
| 21 | RedirectMatch ^(/test/?) http://www.pictnotes.jp?param1=hoge\¶m2=fuga |
| 22 | & -> \& |
| 23 | }}} |
| 24 | |
| 25 | * [http://ysmt.blog21.fc2.com/blog-entry-216.html Freak: mod_rewriteで動的ページを静的ページっぽいURLにする] |