我遇到缓存问题。当我访问我的网站时,我看到了旧的主题,直到我点击ctl + f5来更新页面。有没有办法阻止浏览器存储缓存?
我使用过这些元:
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="no-cache">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Cache-Control" content="no-cache">
但结果相同
答案 0 :(得分:0)
使用以下标题:
Cache-Control: no-cache, no-store, must-revalidate
Pragma: no-cache
Expires: 0
可以找到更多here
修改1:如链接中进一步提到的,请在<head>
和</head>
之间使用这些纯HTML代码,看看它是否有效:
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />