如何禁止页面缓存的方法。
1,html禁止页面缓存,只要加在头部就可以了.
2,asp中的方法
-
- response.buffer = true
- response.expiresabsolute = now() - 1
- response.expires = 0
- response.cachecontrol = "no-cache"
- response.addheader "pragma", "no-cache"
复制代码
3,php中禁止页面缓存。
-
-
header('expires: mon, 26 jul 1997 05:00:00 gmt');
- header('last-modified: ' . gmdate('d, d m y h:i:s') . 'gmt');
- header('cache-control: no-cache, must-revalidate');
- header('pragma: no-cache');
- ?>
复制代码
另一种最简单的方法,就是ajax时用?mt=随便数据也是可以的。
|