8

How can I set the cache expiry date of a whole folder of images using .htaccess?

Right now, I only want the contents of one specific folder to be given a long cache expiry date. I'm currently using the following code (pasted below), but I find it a pain because every time I add a new piece of art, I have to add it to this list. Is there a way I can just specify the entire folder?

<FilesMatch" (\.css|main_banner.jpg|cart.png|main_logo.jpg|favicon.ico|search_button.jpg|fp_banner.jpg)$">
   Header set Cache-Control "max-age=2592000"
</FilesMatch> 
justinl
  • 9,764
  • 19
  • 67
  • 87

1 Answers1

10

Just put the .htaccess file in that folder. Then all you need is the Header set Cache-Control "max-age=2592000" directive, without worrying about the FilesMatch condition.

Justin Johnson
  • 29,495
  • 7
  • 60
  • 86