Skip to content

Instantly share code, notes, and snippets.

@lukecav
Last active August 23, 2019 16:31
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save lukecav/a9fa14d32d08cca818b7a7762eef84aa to your computer and use it in GitHub Desktop.
Save lukecav/a9fa14d32d08cca818b7a7762eef84aa to your computer and use it in GitHub Desktop.
Apache mod_expires for WordPress
<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault “access plus 1 month”
ExpiresByType text/html "access plus 2 hours"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/js "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
ExpiresByType text/css "access plus 1 month"
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"
</IfModule>
@lukecav
Copy link
Author

lukecav commented Aug 9, 2017

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