Website image caching with Apache - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T08:30:37Z http://stackoverflow.com/feeds/question/447014 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/447014/website-image-caching-with-apache 2 Website image caching with Apache Piskvor 2009-01-15T14:48:13Z 2009-01-15T17:07:37Z <p>How can I get static content on Apache to be {cached by browser} and not {checked for freshness {with every request}}?</p> <p>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:</p> <pre><code>200 /index.php?page=1234&amp;action=list 304 /favicon.ico 304 /img/logo.png 304 /img/arrow.png (etc.) </code></pre> <p>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).</p> <p>How do I tell the browser to keep the existing file and not check for newer version?</p> <p>EDIT: the mod_expires method works, even with the favicon.</p> http://stackoverflow.com/questions/447014/website-image-caching-with-apache/447039#447039 4 Answer by Piskvor for Website image caching with Apache Piskvor 2009-01-15T14:53:25Z 2009-01-15T17:07:37Z <p>I'm experimenting with <a href="http://httpd.apache.org/docs/2.0/mod/mod_expires.html" rel="nofollow">mod_expires</a> in Apache, loading in and using it in <code>.htaccess</code>.</p> <p>With an <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.21" rel="nofollow">Expires</a> header, the resource is only requested the 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.)</p> <p>For favicon.ico, a bit more work is needed (Apache normally sends this as text/plain).</p> <pre><code>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" </code></pre> <p>And voila, It Works™!</p> http://stackoverflow.com/questions/447014/website-image-caching-with-apache/447051#447051 1 Answer by ConroyP for Website image caching with Apache ConroyP 2009-01-15T14:57:55Z 2009-01-15T14:57:55Z <p>If you set the <code>Expires</code> header on your http response for your static images, your server won't be checked again for that image after first download until the time specified has passed, e.g. if I download a file from your server now that gives it's <code>Expires</code> header as</p> <pre><code>Expires: Fri, 1 Jan 2010 00:00:01 GMT </code></pre> <p>then my browser won't look for it from your server again until 2010, unless I clear my cache/do a force refresh (Ctrl+F5 on windows).</p> <p>There's a simple introduction to setting this up <a href="http://jeremy.zawodny.com/blog/archives/009272.html" rel="nofollow">here</a>, and a list of other possibly helpful responses over at <a href="http://en.wikipedia.org/wiki/List_of_HTTP_headers#Responses" rel="nofollow">wikipedia</a></p>