From: paul Date: Thu, 5 Apr 2018 12:18:58 +0000 (+0000) Subject: prevent browsers from caching pages (which are usually generated) X-Git-Url: http://git.plutz.net/?p=cgilite;a=commitdiff_plain;h=6a7af87c40b6f7394cc63a885276dd1a13b1e313 prevent browsers from caching pages (which are usually generated) svn path=/trunk/; revision=65 --- diff --git a/page.sh b/page.sh index 9b3b10c..def7280 100755 --- a/page.sh +++ b/page.sh @@ -27,5 +27,7 @@ BODY="${BODY:-${_EXEC}/templates/${PAGE}.html.sh}" . "${_EXEC}/pages/${PAGE}.sh" +# prevent browsers from caching generated pages +printf "Cache-Control: no-cache, no-store, must-revalidate\r\nPragma: no-cache\r\nExpires: 0\r\n" printf "Content-Type: text/html;charset=utf-8\r\n\r\n" . "${_EXEC}/templates/frame.html.sh"