确保所有浏览器都不会缓存网页

时间:2010-02-25 16:03:28

标签: caching

你说你放了这些行,但我在哪里以及如何将它放在我的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="Content-Type" content="text/html; charset=iso-8859-1">

3 个答案:

答案 0 :(得分:1)

将它们放在<head></head>之间的任何位置,但在标记<meta http-equiv="Content-Type" ...>之后(如果有)。

答案 1 :(得分:1)

meta会进入文档的<head>

<html>
<head>
  <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">
</head>
<body>
  <p>hi!</p>
</body>
</html>

答案 2 :(得分:0)

他们介于&lt; head&gt;之间和&lt; / head&gt;。