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 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 |
>>: Design sharing of the download page of the Pengyou.com mobile client (picture and text)
Table of contents Preface 1. Parent component pas...
<br />Every family has its own problems, and...
Container lifecycle The life cycle of a container...
Table of contents Preface 1. Installation 1. Down...
The default program publishing path of tomcat7 is...
Talk about the scene Send Email Embedding HTML in...
When installing a virtual machine, a prompt appea...
Recently, I want to regularly back up important i...
Summarize Global environment ➡️ window Normal fun...
This article example shares the specific code of ...
Slow log query function The main function of slow...
Previously, we knew several attributes of backgro...
MySQL installation instructions MySQL is a relati...
This article example shares the specific code of ...
1. Basic knowledge: Http Header User-Agent User A...