当前位置:Gxlcms > PHP教程 > 禁止页面缓存的几种方法

禁止页面缓存的几种方法

时间:2021-07-01 10:21:17 帮助过:12人阅读

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

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=随便数据也是可以的。

人气教程排行