如何清除浏览器的缓存?

时间:2012-10-26 09:44:49

标签: caching browser

我遇到缓存问题。当我访问我的网站时,我看到了旧的主题,直到我点击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">

但结果相同

1 个答案:

答案 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" />