Sharing several methods to disable page caching

Sharing several methods to disable page caching

Today, when developing, I encountered a method where the customer requested that the page not be cached. After checking, I found the following methods to prevent the page from being cached:

html
Just add it to the head.

Copy code
The code is as follows:

<HEAD>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="0">
</HEAD>

asp tutorial practice

Copy code
The code is as follows:

Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "No-Cache"

PHP tutorial practice


Copy code
The code is as follows:

<?php
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: ' . gmdate('D, d MYH:i:s') . 'GMT');
header('Cache-Control: no-cache, must-revalidate');
header('Pragma: no-cache');
?>

There is also a simpler method, which is used by everyone when ajax? mt = random data

<<:  A brief analysis of the principles of NFS servers and the steps for building, configuring and deploying them

>>:  Design sharing of the download page of the Pengyou.com mobile client (picture and text)

Recommend

Website redesign is a difficult task for every family

<br />Every family has its own problems, and...

Complete step-by-step record of MySQL 8.0.26 installation and uninstallation

Table of contents Preface 1. Installation 1. Down...

Solution for converting to inline styles in CSS (css-inline)

Talk about the scene Send Email Embedding HTML in...

VMware Workstation is not compatible with Device/Credential Guard

When installing a virtual machine, a prompt appea...

Rsync+crontab regular synchronization backup under centos7

Recently, I want to regularly back up important i...

Detailed explanation of the this pointing problem in JavaScript

Summarize Global environment ➡️ window Normal fun...

vue+springboot realizes login verification code

This article example shares the specific code of ...

Detailed explanation of MySQL slow log query

Slow log query function The main function of slow...

Detailed explanation of the new background properties in CSS3

Previously, we knew several attributes of backgro...

MySQL installation tutorial under Windows with pictures and text

MySQL installation instructions MySQL is a relati...

Implementing a simple timer in JavaScript

This article example shares the specific code of ...

Summarize the User-Agent of popular browsers

1. Basic knowledge: Http Header User-Agent User A...