Skip to content

Instantly share code, notes, and snippets.

@hasinhayder
Created June 6, 2020 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hasinhayder/f66deaca92debc97501cce69f36ad1c2 to your computer and use it in GitHub Desktop.
Save hasinhayder/f66deaca92debc97501cce69f36ad1c2 to your computer and use it in GitHub Desktop.
Apache Header Cache Control
<VirtualHost *:80>
DocumentRoot (Your root folder here)
ServerName (ServerName Details Here)
..
<FilesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf|svg)$">
Header set Cache-Control "max-age=31536000, public"
</FilesMatch>
..
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment