Last active
November 18, 2023 18:23
-
-
Save lukecav/952651c62eef1326fe3cd10ba4cc52e2 to your computer and use it in GitHub Desktop.
Browser caching for Apache
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 | |
# Images | |
ExpiresByType image/jpeg "access plus 1 year" | |
ExpiresByType image/gif "access plus 1 year" | |
ExpiresByType image/png "access plus 1 year" | |
ExpiresByType image/webp "access plus 1 year" | |
ExpiresByType image/avif "access plus 1 year" | |
ExpiresByType image/avif-sequence "access plus 1 year" | |
ExpiresByType image/svg+xml "access plus 1 year" | |
ExpiresByType image/x-icon "access plus 1 year" | |
# Video | |
ExpiresByType video/webm "access plus 1 year" | |
ExpiresByType video/mp4 "access plus 1 year" | |
ExpiresByType video/ogg "access plus 1 year" | |
ExpiresByType video/mpeg "access plus 1 year" | |
# Fonts | |
ExpiresByType font/ttf "access plus 1 year" | |
ExpiresByType font/otf "access plus 1 year" | |
ExpiresByType font/woff "access plus 1 year" | |
ExpiresByType font/woff2 "access plus 1 year" | |
ExpiresByType application/font-woff "access plus 1 year" | |
ExpiresByType application/vnd.ms-fontobject "access plus 1 year" | |
# CSS, JavaScript | |
ExpiresByType text/css "access plus 6 months" | |
ExpiresByType text/javascript "access plus 6 months" | |
ExpiresByType application/javascript "access plus 6 months" | |
# Others | |
ExpiresByType application/pdf "access plus 6 months" | |
ExpiresByType image/vnd.microsoft.icon "access plus 1 year" | |
ExpiresByType audio/ogg "access plus 6 months" | |
</IfModule> |
Nice grouping and a good extensive example. Perhaps ExpiresByType image/ico "access plus 1 month"
and ExpiresByType text/html "access plus 600 seconds"
too?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://gtmetrix.com/serve-static-assets-with-an-efficient-cache-policy.html#how-to-cache
https://github.com/wp-media/wp-rocket/blob/develop/inc/functions/htaccess.php