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.
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.
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:
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:
![]()










#1 by Darren (Green Change) on July 29, 2009 - 11:49 pm
Thanks for this great tip! I just tried it on my blog, and it speeds up access time hugely.
I’m also going to keep an eye on next month’s bandwidth stats – I’m sure this is going to reduce my bandwidth usage a lot due to caching of all the images etc.
Keep the good stuff coming!

Darren (Green Change)´s last blog ..Sydney Water Restrictions Eased
#2 by Johan on September 3, 2009 - 6:15 am
This is a great article, but I wonder what happens if you set the expires header one month in the future and you do a plugin or wordpress update? Will the javascript, css, … only be updated one month in the future for the person who just visted your site for the first time?
#3 by admin on September 4, 2009 - 12:38 am
@Johan, Yep thats right… you can exclude the Javascript and CSS files from caching or rename them manually after every update so the browser fetches the new file. It’s a little bit of a pain but it may be wort it depending on how many javascript and CSS files you have.
#4 by John on September 12, 2009 - 6:48 pm
Thanks for the tip. I just tried this and my YSlow score improved from a C to a B. However, I’m still getting these:
There is 1 component with misconfigured ETags
- http://mysite.com/images/favicon.ico
There are 2 static components without a far-future expiration date.
- http://www.google-analytics.com/ga.js
- http://mysite.com/images/favicon.ico
Any ideas?
#5 by admin on September 12, 2009 - 9:16 pm
Hi John, Please note that YSlow doesn’t recognize a component to have a far-future expiration header unless the expiration is set 2 or more months into the future. So say for example you set the expiration to 6 hours then the components will be cached and your subsequent page loads will be fast but YSlow won’t give you the rating for it as it’s not more than 2 months which they consider to be a far-future.
#6 by John on September 12, 2009 - 10:38 pm
I changed it from 1 month to 2 months and it’s still not being recognized by YSlow. Any other suggestions?
#7 by admin on September 13, 2009 - 5:43 am
@John, try the following.. (Please make sure you always keep a backup copy of your .htaccess file when you update it just in case something goes wrong)
<ifmodule mod_expires.c>
<filesmatch “\.(ico|jpg|jpeg|png|gif|js|css|swf)$”>
ExpiresActive on
ExpiresDefault “access plus 6 months”
</filesmatch>
</ifmodule>
#8 by Bill Gram-Reefer on October 20, 2009 - 12:53 am
I have tried both default and the long list (expires headers above) to .htaccess in ~/public_html/blog/HERE
Yslow still does not see that expires headers have been added. While i thas seen other improvements. Is .htaccess in wrong dir?
Bill Gram-Reefer´s last blog ..Learn Brunch Basics, Oct 24
#9 by admin on October 20, 2009 - 2:53 am
Hi Bill, if WordPress is installed on that directory then it looks like the correct directory. Please note that YSlow won’t recognize it unless the expiry is long into the future (eg. 6 months) but you will see the performance improvement as the browser will cache the files.
#10 by Car Insurance Guy on November 8, 2009 - 4:36 pm
Ah!!! at last I found what I was looking for. Somtimes it takes so much effort to find even tiny useful piece of information.
Nice post. Thanks
#11 by viettel on November 22, 2009 - 11:23 am
I don’t know about ETags, why you tell should remove it buy Yahoo guide tell should added it ?
viettel´s last blog ..Hướng dẫn sử dụng hệ thống tài khoản của thuê bao trả trước
#12 by admin on November 22, 2009 - 9:19 pm
The answer is already in the post… it only advises to remove ETags if you are not taking advantage of this (most site’s don’t)
#13 by Twigs on December 6, 2009 - 7:59 pm
applying expire headers is giving me internal 500 errors. I am also using wp-super cache.
#14 by Harry on December 21, 2009 - 1:28 am
Aha,..
Got it from u. Im using both of Google Page Speed and Yahoo!YSlow. Bad report for my weblog. I think this posting is very usefull for me. Thank for sharing.
Best Regard,
Harry
Harry´s last blog ..You keep Commenting, I Always Follow You
#15 by Jason on January 8, 2010 - 5:14 pm
Thanks for this! One thing to be aware of, the .htaccess code may copy with fancy quotes, so you’ll need to make them plain quotes before uploading.
Jason´s last blog ..This Week in This Week in Tech: Genius
#16 by Doug on January 11, 2010 - 1:44 am
In the example above you need to add:
ExpiresActive on
before
ExpiresDefault “access plus 2 hours”
#17 by Tobi on January 26, 2010 - 9:06 am
Hi there.
Thanks for the info. very helpful.
does it matter where I place to “FileETag none” script?
on the same not, how about the expiration script? any specific location?
thank for the help.
#18 by admin on January 27, 2010 - 2:43 am
You can place it anywhere in your .htaccess file.
#19 by Mad Tomato on February 13, 2010 - 6:00 am
Thanks for this really great tip.
How about if I store images of my blog on a sub-domain
ex. img.myblog.com/images/image-1.jgp
Do I need to create another .htaccess for that sub-domain and add the code to it, too?
THanks for the help!
Mad Tomato´s last blog ..The Web 2.0 Suicide Machine: Kill Your Online Self
#20 by admin on February 13, 2010 - 7:16 am
Yes, sub-domains are treated as a different domain.
#21 by Mad Tomato on February 14, 2010 - 11:58 pm
Thanks again!
Mad Tomato´s last blog ..Beaker’s Ballad: (All we are is) Meep in the wind
#22 by Udegbunam Chukwudi on February 21, 2010 - 5:02 am
My files are hosted on a sub domain and the .htaccess in it looks like the code below
# BEGIN Define Mime Types (in case /etc/mime.types is poorly configured or incorrect)
AddType application/x-javascript .js
AddType application/x-shockwave-flash .swf
AddType image/bmp .bmp
AddType image/gif .gif
AddType image/jpeg .jpeg
AddType image/jpg .jpg
AddType image/png .png
AddType image/svg+xml .svg
AddType image/tif .tif
AddType image/tiff .tiff
AddType image/x-icon .ico
AddType text/css .css
AddType text/htm .htm
AddType text/html .html
AddType text/plain .txt
AddType text/xml .xml
AddType text/xsd .xsd
AddType text/xsl .xsl
# END Define Mime Types
# BEGIN Headers: Ensure browser caching of objects for 30 days
# Set Expires header
ExpiresActive On
ExpiresByType application/x-javascript A2592000
ExpiresByType application/x-shockwave-flash A2592000
ExpiresByType application/wlwmanifest+xml A2592000
ExpiresByType image/bmp A2592000
ExpiresByType image/gif A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType image/jpg A2592000
ExpiresByType image/png A2592000
ExpiresByType image/svg+xml A2592000
ExpiresByType image/tif A2592000
ExpiresByType image/tiff A2592000
ExpiresByType image/x-icon A2592000
ExpiresByType text/css A2592000
ExpiresByType text/htm A2592000
ExpiresByType text/html A2592000
ExpiresByType text/plain A2592000
ExpiresByType text/xml A2592000
ExpiresByType text/xsd A2592000
ExpiresByType text/xsl A2592000
# Set Pragma header
Header set Pragma "public"
# Set Cache-Control header
Header append Cache-Control "public, must-revalidate, proxy-revalidate"
# Set Entity Tag header
FileETag MTime Size
# END Headers: Ensure client-side caching of objects
Yet YSlow and Page Speed keep reporting The following resources are missing a cache expiration
Is my code wrong or something ?

Thanks in advance for your assistance.
Udegbunam Chukwudi´s last blog ..Hostgator Reseller Hosting Plans Uber-Revamped
#23 by admin on February 22, 2010 - 3:45 am
The following comment states that the files are cached for 30 days:
# BEGIN Headers: Ensure browser caching of objects for 30 days
YSlow requires the files to be cached for longer (e.g 6 months). Until you do that it is going to keep complaining about the “missing cache expiration”. I think you can ignore that if your files are cached for 30 days.
#24 by Udegbunam Chukwudi on February 23, 2010 - 2:53 am
Thanks for the tip. I’ll just leave it at 30 days as I’m forever twaeking my theme files. lol.
Udegbunam Chukwudi´s last blog ..Make Money Blogging By Daniel Scocco Short Review
#25 by Charles Leo on March 5, 2010 - 12:40 am
Is there any way to add expires in the .htaccess to specific files?
Since my blog is new, I don’t want to be adding certain file extensions that me be changing.
Charles Leo´s last blog ..HDRSource HDR Photography
#26 by admin on March 6, 2010 - 12:29 am
Hi Charles, yeah you can do it… the file types specified in the “FilesMatch” conditions are the one that will get chached.
#27 by Cure de slabire on April 14, 2010 - 8:54 am
Using the .htaccess codes you provided in your article, I managed to get the performance of one of my sites from 83/100 to 87/100 in the Google Page Speed Firefox Addon.
Thank you once again for this great resource.
#28 by Ali on April 16, 2010 - 9:21 am
Is there another wasy to achieve this?
my webhost doesn’t support the Apache-Expire-module.
#29 by viettel on April 17, 2010 - 2:04 am
Sometimes using:
ExpiresDefault “access plus 2 hours”
It didn’t work but ExpiresActive is work

viettel´s last blog ..Khuyến mãi Adsl Viettel tháng 4 / 5 – 2010
#30 by ascetix on May 12, 2010 - 9:44 am
I’ve tried to add lines mentioned in this aticle, but I think my provider doesn’t use ‘mod_expires’.
When I add ‘ExpiresActive on’ or other Expires* commands, I’m getting Error (500). When I write condition ” and some next lines for expiring rules, my files don’t get proper expiring values (or ETag is till added to file).
Is it possible? maybe I’m doing something wrong?
ascetix´s last blog ..Wystawa Łódź-2010
#31 by admin on May 14, 2010 - 6:54 am
You shouldn’t get any error. Did you copy and paste the exact code I gave in the example first to see if that works before you wrote your conditions?
#32 by jonathan on May 14, 2010 - 3:56 pm
Im not using the ExpiresDefault method, instead im using the
Header set Cache-Control “max-age=3456000, public” for everything except js and css and
Header set Cache-Control “max-age=3456000, private” for the js and css, but Yslow is only complaining about the css not being cached =(
(3456000 is 480 weeks! so its not that!)
think i might try your method and see if it makes it any better =)
jonathan´s last blog ..wordpress permalink 301 url rewrites for seo
#33 by Irwan Syam on May 18, 2010 - 11:11 pm
hi, could i implemented that script to another cms, like joomla?
#34 by admin on May 19, 2010 - 6:58 am
Yep, it is a standard Apache thing so the CMS doesn’t matter here.
#35 by Kyle Boddy on May 24, 2010 - 1:09 pm
Great tips – this helped a ton with my YSlow scores and dramatically improved page loading time.
Kyle Boddy´s last blog ..Random Monday Thoughts
#36 by Amrit Ray on June 2, 2010 - 5:09 pm
How can this be done on windows servers. It does not have .htacces file. I have looked everywhere but can find nothing for windows.
#37 by admin on June 3, 2010 - 5:08 am
If you are using a shared Windows server then there is nothing you can do. The control using a .htaccess file is simply one of the rewards you get for using apache servers.
#38 by Michelle on June 13, 2010 - 3:54 pm
When I add ExpiresDefault “access plus 2 months”
and
# 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
I get a 500 error.
When I use just the 2nd code, it works. Load time definitely speeds up, but I am still left with 15-50 (depending on the page) headers that have no expiration.
#39 by admin on June 14, 2010 - 3:34 am
@Michelle, make sure you are using the correct quotations (“) don’t just copy and paste it because there is a good chance that the font is making the quotation mark all weird.
#40 by Satya Prakash on June 14, 2010 - 7:27 am
If you are facing problem is site update as the future expire is preventing the new looks to propagate to old visitors then you need the solution discussed here:
http://www.satya-weblog.com/2010/04/how-to-delete-cached-file-on-client-side.html
Satya Prakash´s last blog ..Google Font API: Fonts Viewer – Preview all available Fonts in Google Directory
#41 by Vietnam Visa on June 22, 2010 - 4:26 am
I would like to say that this blog really convinced me, you give me best information! Thanks, very good post.
#42 by henk on July 26, 2010 - 12:06 pm
Doesn’t work for me, my provider told me they don’t use ‘expire’ headers, security reasons… Have .htaccess though, it will give error 500.