php header方法使用

來源:互聯網
上載者:User
網頁的緩衝是由 HTTP訊息頭中的“Cache-control”來控制的,常見的取值有private、no-cache、max-age、must- revalidate等,預設為private。其作用根據不同的重新瀏覽方式分為以下幾種情況:
(1) 開啟新視窗
值為private、no-cache、must-revalidate,那麼開啟新視窗訪問時都會重新訪問伺服器。
而如果指定了max-age值,那麼在此值內的時間裡就不會重新訪問伺服器,例如:
Cache-control: max-age=5(表示當訪問此網頁後的5秒內再次訪問不會去伺服器)
(2)在地址欄斷行符號
值為private或must-revalidate則只有第一次訪問時會訪問伺服器,以後就不再訪問。
值為no-cache,那麼每次都會訪問。
值為max-age,則在到期之前不會重複訪問。
(3) 按後退按扭
值為private、must-revalidate、max-age,則不會重訪問,
值為no-cache,則每次都重複訪問
(4) 按重新整理按扭
  無論為何值,都會重複訪問
Cache-control值為“no-cache”時,訪問此頁面不會在Internet臨時文章夾留下頁面備份。
另外,通過指定“Expires”值也會影響到緩衝。例如,指定Expires值為一個早已過去的時間,那 麼訪問此網時若重複在地址欄按斷行符號,那麼每次都會重複訪問: Expires: Fri, 31 Dec 1999 16:00:00 GMT

比如:禁止頁面在IE中緩衝
HTTP響應訊息頭部設定:
CacheControl = no-cache
Pragma=no-cache
Expires = -1
Expires是個好東東,如果伺服器上的網頁經常變化,就把它設定為-1,表示立即到期。如果一個網頁每天淩晨1點更新,可以把Expires設定為第二天的淩晨1點。
當HTTP1.1伺服器指定 CacheControl = no-cache時,瀏覽器就不會緩衝該網頁。
舊式 HTTP 1.0 伺服器不能使用 Cache-Control 標題。
所以為了向後相容 HTTP 1.0 伺服器,IE使用Pragma:no-cache 標題對 HTTP 提供特殊支援。
如果用戶端通過安全連線 (https://)/ 與伺服器通訊,且伺服器在響應中返回 Pragma:no-cache 標題,
則 Internet Explorer不會緩衝此響應。注意:Pragma:no-cache 僅當在安全連線中使用時才防止緩衝,如果在非安全頁中使用,處理方式與 Expires:-1相同,該頁將被緩衝,但被標記為立即到期
header常用指令
header分為三部分:
第一部分為HTTP協議的版本(HTTP-Version);
第二部分為狀態碼(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.m-bang.com );

延遲一段時間後重新導向
// redrict with delay:
header('Refresh: 10; url=http://www.sina.com.cn');
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';
?>
現在表單的填寫,我們可以用AJAX對使用者隨時進行驗證,進行友好的提示,但是在使用者沒有留意AJAX友好提示,提交了錯誤的表單,跳回原頁,而填寫的資訊卻全部丟失了。要支援頁面回跳,有以下的辦法:
1. 使用session_cache_limiter方法: session_cache_limiter('private,must-revalidate'); 但是要值得注意的是 session_cache_limiter()方法要寫在session_start()方法之前才有用;
2.用header來設定控制緩衝的方法: header('Cache-control:private,must-revalidate');

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.