Jul 12, 2016 Β· But what I would like to do is to apply ?nocache=1 to every URL related to the site (including the assets like style.css) so that I get the non cached version of the files. But I also read that this doesn't work in some versions of IE. Are there any set of tags that will turn off cache in all browsers? From the HTTP 1.1 specification: no-store: The purpose of the no-store directive is to prevent the inadvertent release or retention of sensitive information (for example, on backup tapes). 1598155107) to the end of every linked URL (or Γ—tamp if the URL already contains … Ok, even if you aren't using express, what essentially needed is to set the nocache headers. I'm adding the headers in a reusable middleware, otherwise you can set those headers in any way that works. Pragma is the HTTP/1.0 implementation and cache-control is the HTTP/1.1 implementation of the same concept. They both are meant to prevent the client from caching the response. Older clients may not … Our investigations have shown us that not all browsers respect the HTTP cache directives in a uniform manner. For security reasons we do not want certain pages in our application to be cached, eve...

Recommended for you

You may also like