
January 30th, 2013, 03:31 AM
|
|
Registered User
|
|
Join Date: Nov 2008
Posts: 11
Time spent in forums: 1 h 24 m 17 sec
Reputation Power: 0
|
|
|
How to prevent caching in all browsers?
Hi
I don't want my page(s) to be cached AT ALL with any browser (chrome , IE, firefox etc.).
will this in the "HEAD" tag cover it ?
Code:
Code:
<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" />
I googled for the solution, seems the answer keeps changing frequently
|