本篇文章是對HTTP消息頭網頁緩存控制以及header常用指令進行了詳細的分析介紹
需要的朋友參考下
網頁的緩存是由HTTP消息頭中的“Cachecontrol”來控制的常見的取值有privatenocachemaxagemustrevalidate等默認為private其作用根據不同的重新浏覽方式分為以下幾種情況
() 打開新窗口
值為privatenocachemustrevalidate那麼打開新窗口訪問時都會重新訪問服務器
而如果指定了maxage值那麼在此值內的時間裡就不會重新訪問服務器例如
Cachecontrol: maxage=(表示當訪問此網頁後的秒內再次訪問不會去服務器)
() 在地址欄回車
值為private或mustrevalidate則只有第一次訪問時會訪問服務器以後就不再訪問
值為nocache那麼每次都會訪問
值為maxage則在過期之前不會重復訪問
() 按後退按扭
值為privatemustrevalidatemaxage則不會重訪問
值為nocache則每次都重復訪問
() 按刷新按扭
無論為何值都會重復訪問
Cachecontrol值為“nocache”時訪問此頁面不會在Internet臨時文章夾留下頁面備份
另外通過指定“Expires”值也會影響到緩存例如指定Expires值為一個早已過去的時間那麼訪問此網時若重復在地址欄按回車那麼每次都會重復訪問 Expires: Fri Dec :: GMT
比如禁止頁面在IE中緩存
http響應消息頭部設置
CacheControl = nocache
Pragma=nocache
Expires =
Expires是個好東東如果服務器上的網頁經常變化就把它設置為表示立即過期如果一個網頁每天凌晨點更新可以把Expires設置為第二天的凌晨點
當HTTP服務器指定CacheControl = nocache時浏覽器就不會緩存該網頁
舊式 HTTP 服務器不能使用 CacheControl 標題
所以為了向後兼容 HTTP 服務器IE使用Pragma:nocache 標題對 HTTP 提供特殊支持
如果客戶端通過安全連接 (https://)/與服務器通訊且服務器在響應中返回 Pragma:nocache 標題
則 Internet Explorer不會緩存此響應注意Pragma:nocache 僅當在安全連接中使用時才防止緩存如果在非安全頁中使用處理方式與 Expires:相同該頁將被緩存但被標記為立即過期
header常用指令
header分為三部分
第一部分為HTTP協議的版本(HTTPVersion)
第二部分為狀態代碼(Status)
第三部分為原因短語(ReasonPhrase)
復制代碼 代碼如下:
// fix pages: 用這個header指令來解決URL重寫產生的 header
header(HTTP/ OK);
// set header: 頁面沒找到
header(HTTP/ Not Found);
//頁面永久重定向可以告訴搜索引擎更新它們的urls
// set Moved Permanently header (good for redrictions)
// use with location header
header(HTTP/ Moved Permanently);
// 訪問受限
header(HTTP/ Forbidden);
// 服務器錯誤
header(HTTP/ Internal Server Error);
// 重定向到一個新的位置
// redirect to a new location:
header(Location:
延遲一段時間後重定向
// redrict with delay:
header(Refresh: ; url=http://wwwjbnet);
print You will be redirected in seconds;
// 覆蓋 XPoweredBy value
// override XPoweredBy: PHP:
header(XPoweredBy: PHP/);
header(XPoweredBy: Brain/b);
// 內容語言 (en = English)
// content language (en = English)
header(Contentlanguage: en);
//最後修改時間(在緩存的時候可以用到)
// last modified (good for caching)
$time = time() ; // or filemtime($fn) etc
header(LastModified: gmdate(D d M Y H:i:s $time) GMT);
// 告訴浏覽器要獲取的內容還沒有更新
// header for telling the browser that the content
// did not get changed
header(HTTP/ Not Modified);
// 設置內容的長度 (緩存的時候可以用到):
// set content length (good for caching):
header(ContentLength: );
// 用來下載文件:
// Headers for an download:
header(ContentType: application/octetstream);
header(ContentDisposition: attachment; filename="examplezip");
header(ContentTransferEncoding: binary);
// 禁止緩存當前文檔:
// load the file to send:readfile(examplezip);
// Disable caching of the current document:
header(CacheControl: nocache nostore maxage= mustrevalidate);
header(Expires: Mon Jul :: GMT);
// 設置內容類型:
// Date in the pastheader(Pragma: nocache);
// set content type:
header(ContentType: text/html; charset=iso);
header(ContentType: text/html; charset=utf);
// plain text file
header(ContentType: text/plain);
// JPG picture
header(ContentType: image/jpeg);
// ZIP file
header(ContentType: application/zip);
// PDF file
header(ContentType: application/pdf);
// Audio MPEG (MP) file
header(ContentType: audio/mpeg);
// Flash animation// show sign in box
header(ContentType: application/xshockwaveflash);
// 顯示登錄對話框可以用來進行HTTP認證
header(HTTP/ Unauthorized);
header(WWWAuthenticate: Basic realm="Top Secret");
print Text that will be displayed if the user hits cancel or ;
print enters wrong login data;
From:http://tw.wingwit.com/Article/program/PHP/201311/21180.html