Skip to content

Instantly share code, notes, and snippets.

@keithgreer
Created July 5, 2023 12:05
Show Gist options
  • Save keithgreer/8392b9b87932cef11657eb8018942bf2 to your computer and use it in GitHub Desktop.
Save keithgreer/8392b9b87932cef11657eb8018942bf2 to your computer and use it in GitHub Desktop.
Useful .htaccess Rules: Setting the expires header for browser caching - https://keithgreer.dev/useful-htaccess-rules-setting-the-expires-header-for-browser-caching/
## START EXPIRES CACHING ##
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
## END EXPIRES CACHING ##
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment