>  기사  >  백엔드 개발  >  페이지 캐싱을 비활성화하는 여러 가지 방법

페이지 캐싱을 비활성화하는 여러 가지 방법

WBOY
WBOY원래의
2016-07-25 09:12:571275검색

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

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



성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.