Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set the cache expiry period of a whole folder of jpgs using .htaccess

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> 
like image 965
justinl Avatar asked Nov 24 '09 09:11

justinl


1 Answers

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.

like image 68
Justin Johnson Avatar answered Oct 09 '22 13:10

Justin Johnson