重複の可能性:
phpで特定のhttpステータスコードを返す
phpで特定のhttpステータスコードをプログラムで送信するにはどうすればよいですか?このためのメソッドやクラスはありますか?
重複の可能性:
phpで特定のhttpステータスコードを返す
phpで特定のhttpステータスコードをプログラムで送信するにはどうすればよいですか?このためのメソッドやクラスはありますか?
header()
機能はあなたが必要とするものです。
void header ( string $string [, bool $replace = true [, int $http_response_code ]] )
<?php
応答出力をレンダリングするスクリプトの最初のタグの直後に配置します。
http://php.net/manual/en/function.header.phpを参照する必要があります
クライアントに何かを送信する前に、を送信します。考えられるステータスヘッダーは次のとおりです。header()
header('HTTP/1.1 200 OK');
// Page was not found:
header('HTTP/1.1 404 Not Found');
// Access forbidden:
header('HTTP/1.1 403 Forbidden');
// The page moved permanently should be used for
// all redrictions, because search engines know
// what's going on and can easily update their urls.
header('HTTP/1.1 301 Moved Permanently');
// Server error
header('HTTP/1.1 500 Internal Server Error');
// header for telling the browser that the content
// did not get changed
header('HTTP/1.1 304 Not Modified');