Forum Moderators: phranque
Yes, it works on the client side, and on any intervening network caches that examine the headers.
You can do the same thing at the server level using Apache mod_expires and mod_headers:
# Set up Cache Control headers
ExpiresActive On
<FilesMatch "^.*$">
ExpiresDefault A0
Header unset Cache-Control:
Header append Cache-Control: "no-cache, must-revalidate"
</FilesMatch>
It's not clear yet whether we're discussing ways to inhibit search engine caching or network and client caching, though.
Jim