Forum Moderators: phranque
Mod_Expires [httpd.apache.org] AND Mod_Cache [httpd.apache.org] THEN Mod_Headers [httpd.apache.org]
This should give you some ideas.
Some hosts may not have the module(s) you need loaded, so you could have to implement a work-around.
EG I set the expires of my html pages with a php script, and use:
Header unset Cache-Control
Header set Cache-Control: "public,max-age=604800"
For all other files to be cached for one week.
Justin