php のheader関数でリダイレクトするとステータスコードは302
となることをこのたび初めて知った。
PHP: header – Manual
なので301 を返したい場合は以下のようにすればよいとのこと。
header("HTTP/1.0 301 Moved Permanently");
header("Location: http://www.oganosin.net/xxxxx/");
覚えておこう。
Categories: プログラム
Tags: http status code - php


