2
There is a line that says:
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
At the Apache site it says:
Cache-Control: no-store This object may not be stored in any cache, even the requestor’s browser cache. Cache-Control: no-cache This object may be held in any cache but it must be revalidated every time it is requested.
http://www.askapache.com/htaccess/speed-up-sites-with-htaccess-caching.htmlThe expires time is ancient.
Expires: Thu, 19 Nov 1981 08:52:00 GMT
And the cache and cache lookup MISS for their site.
So does this mean I need to allow them to store the files on their proxy server? How do I do this?
With a .htacess file?