How can I get static content on Apache to be {cached} cached by browser} and not {checked for freshness {with every request}}?
I'm working on a website hosted on Apache webserver. Recently, I was testing something with headers (Content-Type for different types of content) and saw a lot of conditional requests for images. Example:
200 /index.php?page=1234&action=list
304 /favicon.ico
304 /img/logo.png
304 /img/arrow.png
(etc.)
Although the image files are static content and are cached by the browser, every time an user opens a page that links to them, they are conditionally requested, to which they send "304 Not Modified". That's good (less data transferred), but it means 20+ more requests with every page load (longer page load due to all those round-trips, even with Keep-Alive and pipelining enabled).
How do I tell the browser to keep the existing file and not check for newer version?
EDIT: the mod_expires method works, but: when I set the ExpiresDefault, all static files get an Expires header, which is not what I want (I only want PNGs, JPGs, GIFs and the favicon). ExpiresByType works even with the images, but not with favicon(which is sent as text/plain). Will update when I find something more.
