溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

header的一些常用指令介紹

發(fā)布時間:2021-07-24 11:40:04 來源:億速云 閱讀:147 作者:chen 欄目:開發(fā)技術

這篇文章主要介紹“header的一些常用指令介紹”,在日常操作中,相信很多人在header的一些常用指令介紹問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”header的一些常用指令介紹”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

header常用指令
header分為三部分:
第一部分為HTTP協(xié)議的版本(HTTP-Version);
第二部分為狀態(tài)代碼(Status);
第三部分為原因短語(Reason-Phrase)。

// fix 404 pages:   用這個header指令來解決URL重寫產生的404 header
header('HTTP/1.1 200 OK');  

// set 404 header:   頁面沒找到
header('HTTP/1.1 404 Not Found');  

//頁面被永久刪除,可以告訴搜索引擎更新它們的urls
// set Moved Permanently header (good for redrictions)  
// use with location header  
header('HTTP/1.1 301 Moved Permanently'); 

// 訪問受限
header('HTTP/1.1 403 Forbidden');

// 服務器錯誤
header('HTTP/1.1 500 Internal Server Error');

// 重定向到一個新的位置
// redirect to a new location:  
header('Location: http://www.example.org/');  

延遲一段時間后重定向
// redrict with delay:  
header('Refresh: 10; url=http://www.example.org/');  
print 'You will be redirected in 10 seconds';  

// 覆蓋 X-Powered-By value
// override X-Powered-By: PHP:  
header('X-Powered-By: PHP/4.4.0');  
header('X-Powered-By: Brain/0.6b');  

// 內容語言 (en = English)
// content language (en = English)  
header('Content-language: en');  

//最后修改時間(在緩存的時候可以用到)
// last modified (good for caching)  
$time = time() - 60; // or filemtime($fn), etc  
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');  

// 告訴瀏覽器要獲取的內容還沒有更新
// header for telling the browser that the content  
// did not get changed  
header('HTTP/1.1 304 Not Modified');  

// 設置內容的長度 (緩存的時候可以用到):
// set content length (good for caching):  
header('Content-Length: 1234');  

// 用來下載文件:
// Headers for an download:  
header('Content-Type: application/octet-stream');  
header('Content-Disposition: attachment; filename="example.zip"');  
header('Content-Transfer-Encoding: binary');  

// 禁止緩存當前文檔:
// load the file to send:readfile('example.zip');  
// Disable caching of the current document:  
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');  
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');  

// 設置內容類型:
// Date in the pastheader('Pragma: no-cache');  
// set content type:  
header('Content-Type: text/html; charset=iso-8859-1');  
header('Content-Type: text/html; charset=utf-8');  
header('Content-Type: text/plain');  

// plain text file  
header('Content-Type: image/jpeg');  

// JPG picture  
header('Content-Type: application/zip');  

// ZIP file  
header('Content-Type: application/pdf');  

// PDF file  
header('Content-Type: audio/mpeg');  

// Audio MPEG (MP3,...) file  
header('Content-Type: application/x-shockwave-flash');  

// 顯示登錄對話框,可以用來進行HTTP認證
// Flash animation// show sign in box  
header('HTTP/1.1 401 Unauthorized');  
header('WWW-Authenticate: Basic realm="Top Secret"');  
print 'Text that will be displayed if the user hits cancel or ';  

print 'enters wrong login data';?>

// 發(fā)送一個200 正常響應
header("HTTP/1.1 200 OK");

// 發(fā)送一個404 找不到資源響應
header('HTTP/1.1 404 Not Found');

// 發(fā)送一個301 永久重定向
header('HTTP/1.1 301 Moved Permanently');

// 發(fā)送一個503 網站暫時不能訪問
header('HTTP/1.1 503 Service Temporarily Unavailable');

// 網頁重定向
header('Location: https://www.jb51.net');

// 設置網頁3秒后重定向
header('Refresh: 3; url=https://www.jb51.net');
echo '網頁將在3秒后跳轉到https://www.jb51.net';

// 設置網頁編碼
header('Content-Type: text/html; charset=utf-8');

// 設置網頁輸出一個圖片流
header('Content-Type: image/jpeg');

// 設置網頁輸出一個pdf文檔
header('Content-Type: application/pdf');

// 設置網頁輸出一個zip文檔
header('Content-Type: application/zip');

到此,關于“header的一些常用指令介紹”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI