I read that when you don't have access to the web server's headers you can turn off the cache using:

<meta http-equiv="Cache-Control" content="no-store" />

But I also read that this doesn't work in some versions of IE. Are there any set of <meta> tags that will turn off cache in all browsers?

link|improve this question

75% accept rate
1  
a combination of bobince and dpb's answers is your best bet. covers all bases. – nickf Aug 27 '09 at 13:43
feedback

3 Answers

up vote 17 down vote accepted
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
link|improve this answer
There's no special reason the third tag is in the lower case is there? – Matthew Lock Oct 12 '09 at 1:25
No special reason. Although you have to consider other things such as your DOCTYPE declaration, or maybe using HTML vs XHTML. – user159088 Oct 14 '09 at 5:53
I submitted an edit which changes this from invalid HTML to valid. – PeterDC May 15 at 8:17
feedback

It doesn't work in IE5, but that's not a big issue.

However, cacheing headers are unreliable in meta elements; for one, any web proxies between the site and the user will completely ignore them. You should always use a real HTTP header for headers such as Cache-Control and Pragma.

link|improve this answer
@bobince, Thanks! I'll keep this in mind if I have any issues with web proxies, but my "team" keeps me completely on the front-end and give me no access to the headers. – leeand00 Aug 27 '09 at 14:02
feedback

pragma is your best bet:

<meta http-equiv="Pragma" content="no-cache">
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.