//修正404頁:
header( ' HTTP/1.1 200 確定');
// 設定404 標頭:
header('HTTP/1.1 404 Not Found');
// 設定永久移動標頭(適合重定向)
// 與位置標頭一起使用
header('HTTP/1.1 301 永久移動');
// 重定向到新位置:
header('Location: 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('過期時間:1997 年7 月26 日星期一05:00:00 GMT');
// Pastheader 中的日期('Pragma: no-cache');
// 設定內容類型:
header('Content-Type: text/html; charset=iso-8859-1');
header('內容類型:text/html; charset=utf-8');
header('內容類型:文字/純文字');
// 純文字檔案
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:基本領域=「絕密」');
print '如果使用者點選取消或'將顯示的文字;
print '輸入錯誤的登入資料';
? >