You said you put these lines, but where and how do I put this in my html?
I used those below, but they didn't work i开发者_开发技巧n all browsers
<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">
Put them anywhere between <head>
and </head>
, but after the tag <meta http-equiv="Content-Type" ...>
if there is one.
meta
goes into the <head>
of the document.
<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>
They go in between <head> and </head>.
精彩评论