h5游戏阻止浏览器缓存
2019-07-30 本文已影响0人
huanghaodong
- 将<html>改成<html manifest="IGNORE.manifest">这样的修改会引擎浏览器去缓存html时报错,从而避免该html被缓存
- 在<head></head>围堵标签中添加代码
<head>
<meta http-equiv="Pragma" CONTENT="no-cache">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT">
<meta http-equiv="Expires" CONTENT="0">
<meta http-equiv="cache" content="no-cache">
</head>