I have a basic HTML page, no dynamic content. Occassional updates done manually. However, I am having reports that people are seeing old versions of the page. I thought I had all "no caching" headers setup on my page, under the <head>
section of the html document.
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE" />
<meta http-equiv="EXPIRES" content="0" />
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
Any idea what else I can do to force client-side refresh? The site is being service by apache.
UPDATE So, it turns out this was really just user error. The person experiencing these problems was looking for updates on a.domain.com, but had instructed me to make the changes on b.domain.com. So they were, simply, looking in the wrong place. I did learn some things about caching though, while trying to figure out the problem!