Skip to content

Instantly share code, notes, and snippets.

@jaikt
Created May 10, 2024 10:19
Show Gist options
  • Save jaikt/3fabf846205705e1c8d405e7441ba0f5 to your computer and use it in GitHub Desktop.
Save jaikt/3fabf846205705e1c8d405e7441ba0f5 to your computer and use it in GitHub Desktop.
<ifModule mod_headers.c>
# One year for image and video files
<filesMatch ".(flv|gif|ico|jpg|jpeg|mp4|mpeg|png|svg|swf|webp)$">
Header set Cache-Control "max-age=31536000, public"
</filesMatch>
# One month for JavaScript and PDF files
<filesMatch ".(js|pdf)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
# One week for CSS files
<filesMatch ".(css)$">
Header set Cache-Control "max-age=604800, public"
</filesMatch>
</ifModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment