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

A simple example of using Vue3 routing VueRouter4

routing vue-router4 keeps most of the API unchang...

Detailed example of MySQL subquery

Subquery Classification Classification by returne...

JS+Canvas draws a lucky draw wheel

This article shares the specific code of JS+Canva...

Vue3 + TypeScript Development Summary

Table of contents Vue3 + TypeScript Learning 1. E...

Javascript basics about built-in objects

Table of contents 1. Introduction to built-in obj...

How to quickly modify the host attribute of a MySQL user

When you log in to MySQL remotely, the account yo...

Solution to the problem of eight hours difference in MySQL insertion time

Solve the problem of eight hours time difference ...

Detailed explanation of writing and using Makefile under Linux

Table of contents Makefile Makefile naming and ru...

10 very good CSS skills collection and sharing

Here, clever use of CSS techniques allows you to g...

Mysql index types and basic usage examples

Table of contents index - General index - Unique ...