Reputation: 42880
I have a bunch of HTML static files. I realize chrome doesn't really obey the rules in my HTML static file.
<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">
Seems to be bug? http://code.google.com/p/chromium/issues/detail?id=28035
I do not know any workaround. Anyone knows?
Upvotes: 0
Views: 778
Reputation: 51481
Configure your web server to send these as headers for your file (or all *.html files). Since you didn't specify your web server, can't really give more info.
Upvotes: 1