// 404ページを修正:
header('HTTP/1.1 200 OK');
// 404 ヘッダーを設定します:
header('HTTP/1.1 404 Not Found');
// Moved Permanently ヘッダーを設定します (リドリクションに適しています)
// location ヘッダーと一緒に使用します
header('HTTP/1.1 301 Moved Permanently');
// 新しい場所にリダイレクトします:
header('場所: http://www.example.org/');
// 遅延を伴うリダイレクト:
header('Refresh: 10; url=http://www.example.org/');
print '10 秒後にリダイレクトされます';
// HTML 構文://
header('Content-Transfer-Encoding:binary');
// 送信するファイルをロードします:readfile('example.zip) ');
// 現在のドキュメントのキャッシュを無効にします:
header('Cache-Control: no-cache、no-store、max-age=0、must-revalidate');
header('Expires: Mon, 26 1997 年 7 月 05:00:00 GMT');
// pastheader('Pragma: no-cache'); の日付
// コンテンツ タイプを設定します:
header('Content-Type: text/html; charset=iso-8859-1');
header('Content-Type: text/html; charset=utf-8');
header('Content-Type: text/plain');
// プレーンテキストファイル
header('Content-Type: image/jpeg');
// JPG 画像
header('Content-Type: application/zip');
// ZIP ファイル
header('Content-Type: application/pdf');
// PDF ファイル
header('Content-Type: audio/mpeg');
// オーディオ MPEG (MP3,…) ファイル
header('Content-Type: application/x-shockwave-flash');
// Flash アニメーション// サインイン ボックスを表示
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');
print 'ユーザーがキャンセルまたは '; を押した場合に表示されるテキスト
print '間違ったログインデータを入力しました';
?>