Cheok Yan Cheng
Cheok Yan Cheng

Reputation: 42880

Chrome doesn't obey no-cache rule in static HTML files

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

Answers (1)

Strelok
Strelok

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

Related Questions