: If you're referring to caching from the way google looks at it, then use the robots noarchive tag like this: <meta name="robots" content="noarchive"> If you're referring to browser caching
If you're referring to caching from the way google looks at it, then use the robots noarchive tag like this:
<meta name="robots" content="noarchive">
If you're referring to browser caching (which I think is the case), then configure your server to issue the following in the HTTP header for each page you don't want cached.
cache-control: no-cache,no-store,must-revalidate
If you're serving older browsers that only understand HTTP 1.0, then use the following in the HTTP header:
pragma: no-cache
If the pages of your website are generated on the fly with PHP, then you can easily add those headers with this command:
header(____,true);
Where the ____ is replaced with each header to include.
The only other option is to have everyone turn off caching in their browsers, but that will not likely happen.
More posts by @Angela700
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.