I'm experimenting with mod_expires in Apache, loading in and using this it in .htaccess:
ExpiresActive on
ExpireDefault "access plus 5 days"
ExpiresByType text/css "access plus 1 days"
The .
With an Expires header, the resource is only requested oncethe first time. Before it hits the expiration date, subsequent requests are fulfilled from cache. After the specified time expires and the resource is needed, it is requested again. The only reliable way to clear it from the cache before it expires is manually, or by forcing a refresh (Ctrl-F5). (This could be an issue if it changes in the meantime, but statical images don't change very often.)
For favicon.ico, a bit more work is needed (Apache normally sends this as text/plain).
ExpiresActive on
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
# css may change a bit sometimes
ExpiresByType text/css "access plus 1 days"
# special MIME type for icons
AddType image/vnd.microsoft.icon .ico
# now we have icon MIME type, we can use it
# my favicon doesn't change much
ExpiresByType image/vnd.microsoft.icon "access plus 3 months"
And voila, It Works™!
