Google : Block or disable caching of your website content
Problem :
You don't want Google or other search engines to cache your page content for reason such as - published a page with an embarrassing mistake or contain sensitive or erroneous information that you've removed from your server. How do you tell Google not to cache your page content?
Solution :
Insert the noarchive meta tag in between the
<head></head>
block. For example :<head> ... <meta name=”robots” content=”noarchive”> ... </head>
This will block as per page. And if you're looking to disable caching for the entire webserver, read the next solution.
Or Insert this instruction in the
robots.txt
file and make it accessible from the webserver's root directory.User-agent: * Noarchive: /
For example, https://www.socketloop.com/robots.txt
In this way, Google will understand that you do not want any caching done for the entire server.
Hope this tutorial is useful to ya.
See also : How to show different content from website server when AdBlock is detected?
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+4.4k Javascript : Access JSON data example
+12.8k Golang : Calculate elapsed years or months since a date
+5.7k Golang : Generate multiplication table from an integer example
+4.6k Which content-type(MIME type) to use for JSON data
+44.4k Golang : Use wildcard patterns with filepath.Glob() example
+13.3k Golang : reCAPTCHA example
+5.1k Golang : Reclaim memory occupied by make() example
+12.4k Swift : Convert (cast) Int or int32 value to CGFloat
+13.3k Golang : Activate web camera and broadcast out base64 encoded images
+27.3k PHP : Count number of JSON items/objects
+21.8k Golang : Match strings by wildcard patterns with filepath.Match() function
+27.1k PHP : Convert(cast) string to bigInt