301・302・303をHTTPレスポンスでを返す
httpd.confや.htaccessにページ転送設定を行なう際の記述例を参考までにまとめています。
301 Moved Permanently
Webサーバから恒久的な移動を意味する「301 Moved Permenently」を返却する場合に以下を記述します。
Redirect permanent /path/to/file/ http://www.kishiro.com/
302 Found(Moved Temporary)
Webサーバから一時的な移動を意味する「302 Found」を返却する際に以下を記述します。Redirect temp /path/to/file/ http://www.kishiro.com/
303 See Other
Webサーバから代替参照を意味する「303 See Other」を返却する際に以下を記述します。Redirect seeother /path/to/file/ http://www.kishiro.com/