猿问
怎么能有效禁止刷新网页、禁止"后退"(或网页立即过期)的代码?
怎么能有效禁止刷新网页、禁止"后退"(或网页立即过期)的代码
紫衣仙女
浏览 2129
回答 4
4回答
12345678_0001
Pragma:no-cache,跟Cache-Control: no-cache相同。Pragma: no-cache兼容http 1.0 ,Cache-Control: no-cache是http 1.1提供的。因此,Pragma: no-cache可以应用到http 1.0 和http 1.1,而Cache-Control: no-cache只能应用于http 1.1.123<META HTTP-EQUIV="Pragma" CONTENT="no-cache" /><META HTTP-EQUIV="Cache-Control" CONTENT="no-cache" /><META HTTP-EQUIV="Expires" CONTENT="-1" />Expires = -1 才可以禁止缓存,0 应该是永不过期;
0
0
0
一只萌萌小番薯
response.setHeader("progma","no-cache");response.setHeader("Cache-Control","no-cache");response.setDateHeader("Expires",0);服务端跳转到当前页面的时候,把当前页面设置不缓存。
0
0
0
随时随地看视频
慕课网APP
相关分类
Ruby
区块链
关于防盗链 - 如何防止伪造 referer 爬取页面内的音频和图片的问题?
1 回答
Tornado
如何使用tornado的日志文件输出?
1 回答
tornado启动失败有关问题,求教各位大能?
1 回答
我要回答