From c2dad2462cfe84eda8cf6906d76634d5490928f0 Mon Sep 17 00:00:00 2001 From: Daniel Earl Poirier Date: Fri, 9 Oct 2009 14:32:00 +0000 Subject: [PATCH] Update doc to match change to mod_cache to include s-maxage in some cacheability decisions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@823563 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/caching.xml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/manual/caching.xml b/docs/manual/caching.xml index 0925734fe3..5c1ac0428d 100644 --- a/docs/manual/caching.xml +++ b/docs/manual/caching.xml @@ -250,12 +250,15 @@ in the "Cache-Control:" header.
  • If the URL included a query string (e.g. from a HTML form GET - method) it will not be cached unless the response includes an - "Expires:" header, as per RFC2616 section 13.9.
  • + method) it will not be cached unless the response specifies an + explicit expiration by including an "Expires:" header or the max-age + or s-maxage directive of the "Cache-Control:" header, as per RFC2616 + sections 13.9 and 13.2.1.
  • If the response has a status of 200 (OK), the response must also include at least one of the "Etag", "Last-Modified" or - the "Expires" headers, unless the + the "Expires" headers, or the max-age or s-maxage directive of + the "Cache-Control:" header, unless the CacheIgnoreNoLastMod directive has been used to require otherwise.
  • -- 2.50.1