in reply to Slightly OT: Stop caching images

Images are sent in a separate http request than your html page, so you probably need to send a non-caching header with each image. Offhand, the only way I can think of doing this is to send the images through your script where you can add your own header. You might check the server documentation to see if there is a configuration directive to send non-caching headers.

Replies are listed 'Best First'.
Re^2: Slightly OT: Stop caching images
by astroboy (Chaplain) on Mar 27, 2007 at 11:55 UTC
    ah, I understand now. My no-caching efforts were in vain...