How to set the page you are viewing to not allow Baidu to save its snapshot

How to set the page you are viewing to not allow Baidu to save its snapshot
Today, when I searched for a page on Baidu, because the page had been deleted, I naturally used Baidu snapshot. When I opened Baidu snapshot, it showed: Sorry, the webpage you are viewing does not allow Baidu to save its snapshots. So I thought of writing down how to set up a method to prohibit Baidu snapshot caching. The method is as follows:

Add between <head> and </head> of the web page where Baidu cache needs to be disabled
<meta name="Baiduspider" content="noarchive">

Similarly, if you need to disable all search engine caching, add the following line between <head> and </head> of the page you want to disable caching:
<meta name="ROBOTS" content="noarchive">

<<:  Web Design Help: Web Font Size Data Reference

>>:  Some basic instructions of docker

Recommend

How to install phabricator using Docker

I am using the Ubuntu 16.04 system here. Installa...

Detailed explanation of the spacing problem between img tags

IMG tag basic analysis In HTML5, the img tag has ...

MySQL DeadLock troubleshooting full process record

【author】 Liu Bo: Senior Database Manager at Ctrip...

A brief discussion on when MySQL uses internal temporary tables

union execution For ease of analysis, use the fol...

Use of MySQL stress testing tool Mysqlslap

1. MySQL's own stress testing tool Mysqlslap ...

Solution to index failure in MySQL due to different field character sets

What is an index? Why create an index? Indexes ar...

Native js to implement a simple calculator

This article example shares the specific code of ...

Eight implementation solutions for cross-domain js front-end

Table of contents 1. jsonp cross-domain 2. docume...

Detailed explanation of the use of various MySQL indexes

1. Slow query log 1.1 MySQL log types Logs are us...

HTML dl, dt, dd tags to create a table vs. Table creation table

Not only does it reduce the cost of website develo...

Using CSS to implement image frame animation and curve motion

The basic principle of all animations is to displ...

How to enable MySQL remote connection in Linux server

Preface Learn MySQL to reorganize previous non-MK...