Last active
August 23, 2019 16:31
-
-
Save lukecav/a9fa14d32d08cca818b7a7762eef84aa to your computer and use it in GitHub Desktop.
Apache mod_expires for WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://httpd.apache.org/docs/current/mod/mod_expires.html#expiresdefault