How do I set Apache set HTTP headers which cache all resources for 15 mins but also allow .htaccess files in a directory to override these settings on a per-site basis?
How do I set Apache set HTTP headers which cache all resources for 15 mins but also allow .htaccess files in a directory to override these settings on a per-site basis?
If you're talking about mod_expires (telling browsers how to cache the content), then you would put something like this in your httpd.conf:
And then in the .htaccess:
You can also override by type of resource, using
ExpiresByType
If you're talking about caching the content server-side (mod_cache), these directives can only be done in httpd.conf and vhosts files. .htaccess cannot override them.