How do I get my website to save images to clients computer and use them, not redownload them every page reload?

I tried to send header("Cache-Control: max-age=3600"); but that had no effect.

link|improve this question

29% accept rate
feedback

1 Answer

You'll need to sand caching headers for the image files, not for your HTML document. You can use the header function only if the files are actually served by a PHP script - not if they are static files handled by the web server. If they are static files, check the documentation for your web server of choice.

Also consider sending en Expires header, and disable ETags.

link|improve this answer
I checked the documentation, nothing happened o_O – user781655 Jul 9 '11 at 14:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.