Speeding site load times with htaccess

Development

Create an “.htaccess” file in the folder you want to be cached and add the following to it.

# Cache files for a week.
<IfModule mod_headers.c>
  <IfModule mod_expires.c>
    <FilesMatch ".(jpg|jpeg|png|gif|swf|css|js)$">
      Header set Cache-Control "max-age=604800, public"
    </FilesMatch>
  </IfModule>
</IfModule>

This will have the effect of caching your site for a week. The number 604800 refers to the number of seconds in a week you should also see the file types mentioned in the line above. Change them as you see fit.

You will need mod_headers and mod_expires enabled in your apache htpd.conf for this to work, but with the ifmodule statements in there there should be no problem if they aren’t installed. If it wasn’t for the two ifmodule statements your site would be dumped to a 500 server error if it couldn’t find them.

To check the expiration times I find the easiest way is to load the page in Firefox, right click somewhere and hit “View page info” then go to the media tab. You will see date and time for the expected expiry of the image files on your site.

Leave a Reply

Your email address will not be published. Required fields are marked *