以下是尝试清除缓存的代码:
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="cache-control" content="no-store" />
<meta http-equiv="cache-control" content="must-revalidate" />
<meta http-equiv="cache-control" content="proxy-revalidate" />
<meta http-equiv="expires" content="-1" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
答案 0 :(得分:0)
请你试试这个:
<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" />
网站是否已发布?如果没有,如果从未使用过缓存,则您提到的标签将起作用。您可以简单地清除自己的缓存,当用户获得第一个版本时,它将不会被缓存。如果用户已经缓存了该页面,我的标签应该是更好的主意。
请告诉我它是否有效。
答案 1 :(得分:0)
尝试更改
<meta http-equiv="expires" content="-1" />
到
<meta http-equiv="expires" content="0" />