禁止頁面快取的幾種方法

WBOY
發布: 2016-07-25 09:12:57
原創
1281 人瀏覽過

如何禁止页面缓存的方法。

1,html禁止页面缓存,只要加在头部就可以了.

复制代码

2,asp中的方法

  1. response.buffer = true
  2. response.expiresabsolute = now() - 1
  3. response.expires = 0
  4. response.cachecontrol = "no-cache"
  5. response.addheader "pragma", "no-cache"
复制代码

3,php中禁止页面缓存。

  1. header('expires: mon, 26 jul 1997 05:00:00 gmt');
  2. header('last-modified: ' . gmdate('d, d m y h:i:s') . 'gmt');
  3. header('cache-control: no-cache, must-revalidate');
  4. header('pragma: no-cache');
  5. ?>
复制代码

另一种最简单的方法,就是ajax时用?mt=随便数据也是可以的。



來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板