EC-CUBEのカスタマイズ、ネットショップ制作メモ

主にEC-CUBEを利用したネットショップの制作、カスタマイズや独自機能の開発について

phpのheader関数でリダイレクトする時のメモ

phpで標準的な

header("Location:http://www.xross-cube.com/");

でリダイレクトすると302が返されるので

header( "HTTP/1.1 301 Moved Permanently" ); 
header("Location:http://www.xross-cube.com/");

と301を指定する。

httpレスポンス30x

300 Multiple Choices
301 Moved Permanently
302 Moved Temporarily
303 See Other
304 Not Modified
305 Use Proxy