参见英文答案 >
How to control web page caching,across all browsers?26个答案我有一个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"/>
解决方法
您所拥有的值可以,但是
meta http-equiv
is highly unreliable.您应该使用真正的HTTP标头(您的具体操作将取决于您的服务器,例如
for Apache)。