当前位置:首页 > PHP教程 > php应用 > 列表

清除网页缓存(html asp php java)

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-09 14:15:19 浏览: 评论:0 

清除缓存我们只需要设置页面为no-cache就可以了,当然像asp,php这种只需要设置Expires操作即可,具体如下.

HTML网页:

  1. <META HTTP-EQUIV="pragma" CONTENT="no-cache"
  2. <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate"
  3. <META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT"
  4. 或者<META HTTP-EQUIV="expires" CONTENT="0"

ASP网页:

  1. Response.Expires = -1 
  2. Response.ExpiresAbsolute = Now() - 1 
  3. Response.cachecontrol = "no-cache" 

PHP网页:

  1. header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 
  2. header("Cache-Control: no-cache, must-revalidate"); 
  3. header("Pragma: no-cache"); //开源软件:phpfensi.com 

JSP网页

  1. response.setHeader("Pragma""No-cache"); 
  2. response.setHeader("Cache-Control""no-cache"); 
  3. response.setDateHeader("Expires", 1);

Tags: php网页缓存 asp网页缓存

分享到: