oganosin blog

oganosin weblog

Posts Tagged 'http status code'

php のheader関数でリダイレクトするとステータスコードは302

となることをこのたび初めて知った。
PHP: header – Manual

なので301 を返したい場合は以下のようにすればよいとのこと。

header("HTTP/1.0 301 Moved Permanently");
header("Location: http://www.oganosin.net/xxxxx/");

覚えておこう。

2009/04/30 at 17:16 - Comments