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

HTML Learning Notes--Detailed Explanation of HTML Syntax (Must Read)

1. What is HTML markup language? HTML is a markup...

Implementation of JavaScript downloading linked images and uploading them

Since we are going to upload pictures, the first ...

Introduction to the three essential logs for MySQL database interviews

Table of contents 1. redo log (transaction log of...

DOCTYPE element detailed explanation complete version

1. Overview This article systematically explains ...

MySQL permission control details analysis

Table of contents 1. Global level 2. Database lev...

Summary of commonly used escape characters in HTML

The commonly used escape characters in HTML are s...

Docker-compose quickly builds steps for Docker private warehouse

Create docker-compose.yml and fill in the followi...

JavaScript to implement dynamic digital clock

This article shares the specific code for impleme...

Network management and network isolation implementation of Docker containers

1. Docker network management 1. Docker container ...

Solution to the error reported by Mysql systemctl start mysqld

Error message: Job for mysqld.service failed beca...

A brief discussion on the three major issues of JS: asynchrony and single thread

Table of contents Single thread asynchronous Sing...

Build nginx virtual host based on domain name, port and IP

There are three types of virtual hosts supported ...

Tutorial on building svn server with docker

SVN is the abbreviation of subversion, an open so...