How to Add Far Future Expires Headers to Your WordPress Site

Categories: Site Optimization Tips

Few weeks ago I wrote on how to optimize your WordPress site for better performance which has some tips and tricks on how to speed up a WordPress Site. I received a few requests to elaborate on some of the points as not all of them are obvious changes. In this article I have explained how you can add far future expiry header to your image, css and javascript files to speed up your site.

Adding expires headers do not affect the site load time for a first time visitor but you will be surprised how much the page load time decreases (faster page load) for subsequent page views/return visits from that visitor. Expires header specifies a time far enough in the future so that browsers won’t try to re-fetch images, CSS, javascript etc files that haven’t changed (this reduces the number of HTTP requests) and hence the performance improvement on subsequent page views.

If your server is Apache (most web servers), you can use the ‘ExpiresDefault’ directive to set an expiration date relative to the current date.

ExpiresDefault “access plus 2 months”

This sets the expiry date of the file 2 months into the future from the current time. The following values can be used to specify the time period:

  • years
  • months
  • weeks
  • days
  • hours
  • minutes
  • seconds

eg. ExpiresDefault “access plus 14 days”

To add expires header to the image, CSS, javascript files add the following to your .htaccess file
#Expire Header
<FilesMatch "\.(ico|jpg|jpeg|png|gif|js|css|swf)$">
ExpiresDefault "access plus 2 hours"
</FilesMatch>

or
# Expire images header
ExpiresActive On
ExpiresDefault A0
ExpiresByType image/gif A2592000
ExpiresByType image/png A2592000
ExpiresByType image/jpg A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType image/ico A2592000
ExpiresByType text/css A2592000
ExpiresByType text/javascript A2592000

A2592000 means 1 month in the future (60*60*24*30=2592000)

Keep in mind that when you use expires header the files are cached in the browser until it expires so do not use this on files that changes frequently. If you change/update a file that has a far future expiry (eg. CSS or javascript files) then you should rename that file and use the renamed version so the browser doesn’t fetch the old file.

Video Tutorial (Adding Far Future Expiry Header)

Removing ETags

According to Wikipedia – “An ETag (entity tag) is an HTTP response header returned by an HTTP/1.1 compliant web server used to determine change in content at a given URL. When a new HTTP response contains the same ETag as an older HTTP response, the contents are considered to be the same without further downloading.”

ETags were added to provide a mechanism for validating entities that is more flexible than the last-modified date but If you’re not taking advantage of the flexible validation model that ETags provide, it’s better to just remove the ETag altogether. Removing the ETag reduces the size of the HTTP headers in the response and subsequent requests thus improving site performance.

Add the following to your .htaccess file to remove ETags:

FileETag none

These tweaks can dramatically improve the performance of your site even though they are minor and doesn’t take that long to apply. I have seen a 20% speed improvement on my page loads just by adding these tweaks. My home page used to take around 5 seconds to load but then it dropped to around 3 seconds after these tweaks. Below is a screenshot of YSlow:
Screenshot of my Home Page Load Time

Tags: , , , , , ,

Subscribe to Tips and Tricks HQ to stay informed

email icon rss feed icon twitter icon google plus icon

120 Responses

  • #1 by Ron on March 14, 2013 - 1:22 am

    The commenting system stripped out the code from my examples.

    Basically, just paste this line:
    ExpiresActive ON

    before you specify the expiration timeframes if you’re using the FilesMatch method as mentioned in the post on this page.

  • #2 by yep100 on March 10, 2013 - 10:36 am

    Thanks for sharing :)

    I’ve tried it n this trick work very well. My blog run faster than before.

  • #3 by admin on March 2, 2013 - 6:46 pm

    @Mukesh, Try a 1 year value rather than 1 month. YSlow sometimes doesn’t catch it if that value is not long enough.

  • #4 by Mukesh Mali on March 2, 2013 - 4:24 pm

    Ive placed the first code in my htaccess file and changed it to 1 months, but Yslow still says I have nothing? Any suggestions. If you need any more info just say.
    Thanks

  • #5 by wpshouter on August 25, 2012 - 8:55 am

    tnx buddy for this after adding it my YSlow grade jumps to 92 which is pretty impressive :)

  • #6 by ModeShops on August 21, 2012 - 3:42 am

    Hello,
    I´m using Joomla, but I think it is the same as for WP.

    Thany for the Tipps

  • #7 by Arsie on July 5, 2012 - 10:55 am

    Thank you for this tip I will try this with my site and see what happens.

  • #8 by kizi on June 19, 2012 - 3:58 am

    Thanks for giving me the useful information. Thanks!

  • #9 by Elle@GiftGoggling on May 15, 2012 - 2:29 pm

    Thank you, thank you! Clear concise instructions. I’m just setting up a new site and after testing my page speed saw I should change my set expires. I remember this coming up on an older site a few years ago and not being able to find HOW to change this, when YSlow was telling me I SHOULD change it.

    I was getting a grade B, 81% so lets see what kind of improvement I get after implementing this.

  • #10 by Dave on April 15, 2012 - 12:36 am

    Thanks for the tip, needed a way to cache images as there are a lot on my site.

  • #11 by Friv on April 6, 2012 - 10:32 am

    Interesting posts and awesome blog!I will be happy to visit it again!

  • #12 by Computer Repair Redding on March 25, 2012 - 12:03 pm

    Great information…I need the expires header detail to complete my 95% ySlow score. I can’t get to perfect because I don’t use CDN.

    Thanks, Mark

  • #13 by agame.com on January 20, 2012 - 1:08 pm

    thanks for sharing tips! I really like what you guys are up too. Such clever work and coverage! Keep up the terrific works guys I’ve added you guys to our blogroll.

  • #14 by poptropica on November 19, 2011 - 1:45 am

    The code works like a charm, I really appreciate for sharing your Big idea to us. Very Helpful. Thank a lot.

  • #15 by starfall on November 17, 2011 - 7:07 pm

    You are amazingly great. I appreciate the tutorial, very helpful. nice one admin, page load on website gains high performance and seo friendly to search engines.

  • #16 by Timber Flooring on November 14, 2011 - 10:25 am

    Thanks for the information, has made my site faster, and like you say doesn`t take much time to do !!!

    Thanks again

  • #17 by Roger Sanchez on November 13, 2011 - 2:55 am

    Hi guys (and gals)…

    Once again, very exceptional: above it, actually…Helped me gain an edge in my cache (plus other methods I’ve started for my site: DNS, sprites, etc.)…I’ve seen load-times (initial & cached) jump to amazing levels…This was just one of the ideas that helped me attain those high-marks on this project…

    Thanks again for sharing & have a great day!

    Roger

  • #18 by starfall on November 11, 2011 - 7:36 am

    totally useful, and if anyone whose not much of a coder type, you may use plugins. try searching for seo plugins or minifying the theme itself.

  • #19 by Elin on November 7, 2011 - 1:44 am

    Thank you. Applied on my blog, my blog so much faster now

    For wordpress user, http://wordpress.org/extend/plugins/w3-total-cache/ is best way to apply this script. Thank you

  • #20 by Mike on October 16, 2011 - 5:45 pm

    searching for “setting expiry date for jpg” in google brought me to your site and in just minutes i got 3 % more page speed and an upgrade to A in Yslow! my site Americaurlaub.de means americavacancies and has some infos for tourists that are interested in visiting America. native german speakers, mostly from germany, austria and switzerland.
    thanks to you, the site is running more faster now.
    Mike Hutner

  • #21 by seobalu on October 15, 2011 - 7:42 am

    Thank you for sharing this info. I was able to add expires header by modifying the .htaccess file and now my site is loading faster… amazing!

  • #22 by Aluvsa on October 10, 2011 - 5:58 am

    Thank you for the article, I have copied and paste to my blog .htaccess :)

    Regards

  • #23 by Michael | BuildinganOnline.com on September 25, 2011 - 4:06 am

    Thank you for a great explanation of thees too issues. It made me understand what’s going on much better.

    I also discovered that there is a fantastic plugin actually doing the job for you.

    Now, I’m not a big fan of plugin’s – to many only slow down your site – but since this particular one does so much more good for your seo, than just this, I believe it’s worth the(eventual) loss of speed to install it anyway.
    http://wordpress.org/extend/plugins/w3-total-cache/

    I also found some additional great help on speeding up your site at Yahoo.com
    http://developer.yahoo.com/performance/rules.html#num_http

    Ones again, thank you for your article. I’ll sure come back and see what else you have to tell.

    :)
    Michael

  • #24 by Y8 on September 8, 2011 - 5:02 pm

    i heard this expires on today and i search all the way to internet and I found your blog. I’m happy really just install in to my site.

  • #25 by Chileshe on September 5, 2011 - 1:41 am

    very thoughtful peace of idea. I will try it otherwise will be great if you can help and just pay you for the service!

  • #26 by Stardoll on September 4, 2011 - 2:20 am

    hey admin, the expires option is such a wonderful code …this cache the expires date of my files and so far so good.. It 4.3/5 rating now.. Thanks..

  • #27 by Miniclip on September 4, 2011 - 2:18 am

    I never tried hope it will make fast… I implement it right now..

  • #28 by friv on August 31, 2011 - 12:36 am

    thanks for share, It has information I have been searching for a long time

  • #29 by riza on August 17, 2011 - 3:44 pm

    Thank you very much, work fine on my blog, page speed 92% and yslow 89%. :)

  • #30 by FeedTheFlow.com on August 16, 2011 - 2:02 pm

    I might be new to this but thanks alot. That helped me improve my page load speed.

  • #31 by Flooring on August 9, 2011 - 4:34 am

    Thanks for your well written article, I`m starting to understand this now, thanks matey!!

  • #32 by Rasika on July 31, 2011 - 1:54 pm

    I was searching for how to add “expires in the headers” .so found your great article Thank you very much..

  • #33 by friv on July 26, 2011 - 5:11 am

    very good article, very useful for my site. Thx!

  • #34 by Friv on July 25, 2011 - 10:20 am

    Nice article. Thank you a lot for share!

  • #35 by Friv on July 20, 2011 - 3:03 am

    Thank you for sharing. Great post!

  • #36 by jeux on July 2, 2011 - 7:33 pm

    very good article I need it Thanks for the post.

  • #37 by Lifyerori on June 26, 2011 - 5:27 pm

    Nice site ! I will save it in my favorites. thanks

  • #38 by Friv on June 7, 2011 - 4:11 am

    very good article I need it Thanks for the post.

  • #39 by Alang Fauzi Bertuah on May 30, 2011 - 3:18 pm

    Thanks for sharing :)

    I’ve tried it n this trick work very well. My blog run faster than before.

  • #40 by Friv on May 23, 2011 - 2:58 am

    Thank you for sharing, I like it very much

  • #41 by Susan on May 22, 2011 - 1:14 am

    This is quite helpful. I want to do the most I can to make things faster for my sites.

  • #42 by Imran@shariffDotOrg on May 18, 2011 - 1:12 am

    When I page the above code in .htaccess I am getting internal Error, however I have managed to get my scores to 70% which is C Grade. Still I have some issues left like use a CDN, Add Expires Headers, Compress Componenets with gzip and Reduce DNS lookups.

    I am still figuring out how to solve this problems.. I am using cloud hosting from nethosting. anything to be done in WHM.

    Required your suggestion.

    Thanks
    -Imran

  • #43 by admin on April 29, 2011 - 9:03 pm

    @Friv, you will most likely need to change the time to more than 1 year for the tool to recognize it but you can be sure that your images are being cached by browsers for that 2 month (when you browse various pages of your site you will notice the difference)

  • #44 by friv on April 29, 2011 - 3:02 am

    Ive placed the first code in my htaccess file and changed it to 2 months, but Yslow still says I have nothing? Any suggestions. If you need any more info just say.

    Thanks

  • #45 by Friv on April 28, 2011 - 2:42 am

    Thanks!
    I am finding it.

  • #46 by admin on April 11, 2011 - 9:45 pm

    @Nathan, You can load one of your site’s page with images few times and get an average page load time. Then apply this technique and record a few more page load time after. Comparing these two sets of data should give you an indication.

  • #47 by Nathan on April 11, 2011 - 6:25 am

    Its not showing up under any testing system. How can i be sure that I have everything right?

    Thanks

Featured & Popular Articles

Tips and Tricks Hot Items

wordpress estore plugin
wordpress membership plugin
WordPress PDF Stamper Plugin
WordPress Lightbox Ultimate Plugin
wordpress affiliate plugin