きゃらりこ日誌

mod_rewriteの使い方

詳しくはJAPACHEにあるApache1.30の日本語マニュアルの、“Apacheのモジュール ”のmod_rewriteのページを参照。

URLの書き換え
 http://www.example.com/banner/12345.gif → http://www.example.com/banner/67890.jpg

RewriteEngine on

RedirectMatch ^/banner/12345.gif$ /banner/67890.jpg

一時的にリダイレクト(一時移転・転送量削減等に使える)
 http://www.example.com/banner/ → http://www.example.com/img/banners/

Redirect Temp /banner/ http://www.example.com/img/banners/
永久にリダイレクト(サイト移転に使える)

 http://www.example.com/banner/ → http://example.net/img/banners/

Redirect Permanent /banner/ http://example.net/img/banners/