I noticed that Google analytics utm.gif, a tracking pixel, is always requested by the browser even if the back/forward buttons are used. The response headers look like:
Cache-Control:private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Content-Length:35
Content-Type:image/gif
Date:Wed, 07 Sep 2011 23:58:14 GMT
Expires:Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified:Wed, 21 Jan 2004 19:51:30 GMT
Pragma:no-cache
Server:GFE/2.0
I want to replicate this behavior. So I set the relevant headers, which end up looking like:
Cache-Control:private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Content-Length:35
Content-Type:image/gif
Connection:keep-alive
Date:Thu Sep 08 2011 10:31:24 GMT-0300 (ADT)
Expires:Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified:Wed, 21 Jan 2004 19:51:30 GMT
Pragma:no-cache
Transfer-Encoding:chunked
But when I use the back button, my image is drawn from the cache. I've also read about adding on a querystring with a timestamp as a solution to this problem. But is that actually necessary or should I be able to do it with headers alone?