html禁止页面缓存方法

发布时间:2020-04-25编辑:脚本学堂
html禁止页面缓存,有三种方式(pragma、cache-control、expires),jsp页面中禁用页面缓存的方法同理,一起学习下。

如何禁止页面使用缓存?

jsp:页面no cache:
 

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

html禁止页面缓存的三种方式:
 

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content=0>