How to apply cache policy to a specific file with .htaccess? – Apache
Currently, my cache policy looks like this: <IfModule mod_headers.c> <FilesMatch ".(css)$"> Header set Cache-Control "max-age=691200" </FilesMatch> </IfModule> And this caches my css files for 8 days. If I wanted to cache a specific file for a year, how would I…