设置图片的HTTP缓存

3224

  1. <IfModule mod_headers.c>

  2. <FilesMatch ".(gif|jpg|jpeg|png|ico)$">

  3. Header set Cache-Control "max-age=604800"

  4. </FilesMatch>

上面的代码设置了网站的图片使用为期一周的HTTP缓存,当然,你一样可以给js或者css文件加上http缓存哦。