码迷,mamicode.com
首页 > 其他好文 > 详细

禁用浏览器缓存

时间:2015-05-09 11:27:14      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

Java 代码 设置response header

 

        response.setDateHeader("Expires", 0);
        response.setHeader("Cache-Control", "no-cache");
        response.setHeader("Pragma", "no-cache");

 

HTML在head设置

<meta http-equiv="Expires" content="0" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Pragma" content="no-cache" />

 

禁用浏览器缓存

标签:

原文地址:http://www.cnblogs.com/rubekid/p/4489525.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!