Skip to content

Instantly share code, notes, and snippets.

@boogah
Created February 16, 2012 04:59
Show Gist options
  • Star 59 You must be signed in to star a gist
  • Fork 20 You must be signed in to fork a gist
  • Save boogah/1842173 to your computer and use it in GitHub Desktop.
Save boogah/1842173 to your computer and use it in GitHub Desktop.
Expire headers .htaccess code.
<IfModule mod_expires.c>
ExpiresActive on
# Perhaps better to whitelist expires rules? Perhaps.
ExpiresDefault "access plus 1 month"
# Data
ExpiresByType text/xml "access plus 0 seconds"
ExpiresByType application/xml "access plus 0 seconds"
ExpiresByType application/json "access plus 0 seconds"
# Favicon (cannot be renamed)
ExpiresByType image/x-icon "access plus 1 week"
# Media: images, video, audio
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType video/ogg "access plus 1 month"
ExpiresByType audio/ogg "access plus 1 month"
ExpiresByType video/mp4 "access plus 1 month"
ExpiresByType video/webm "access plus 1 month"
# Webfonts
ExpiresByType application/x-font-ttf "access plus 1 month"
ExpiresByType font/opentype "access plus 1 month"
ExpiresByType application/x-font-woff "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 month"
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
# CSS and JavaScript
ExpiresByType text/css "access plus 1 year"
ExpiresByType application/javascript "access plus 1 year"
</IfModule>
Copy link

ghost commented Sep 19, 2016

great

@richard-fasthub
Copy link

thanks..

@rohit2389
Copy link

after using this web socket call is happening in a continuous loop

@codeclinic
Copy link

webp?

ExpiresByType image/webp "access plus 1 month

@RealBrokeBloke
Copy link

Does this work both on Apache as well as nginx?

@h-agharezaei
Copy link

thanks
useful for me

@ralphotowo
Copy link

Very useful. Thank you!

@tsbega
Copy link

tsbega commented Nov 6, 2019

Thanks

@cgowez
Copy link

cgowez commented Sep 15, 2020

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment