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.
|
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.
| |||
|
feedback
|
|
You'll need to sand caching headers for the image files, not for your HTML document. You can use the Also consider sending en Expires header, and disable ETags. | |||
|
feedback
|