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?

link|improve this question

75% accept rate
It does appear that both are required. Google's request for UTM.gif includes params that vary even if the back/forward buttons are used. But there does seem to be some browser-dependent behavior, e.g. on OS X both Chrome and Firefox request the image even if the back/forward buttons are used, but Safari does not. Weird. Guess that each browser decides for itself how to handle back/forward. – David EGP Sep 8 '11 at 13:58
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.