Several ways to prevent page caching

Source: Internet
Author: User
Tags php tutorial

Today in the development of a method, that is, customer requirements page does not cache, check out the following several ways not to let the page cache


Html
Just add it to the head.

<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 Practices

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

PHP Tutorial Practices

<?php
Header (' Expires:mon, June 1997 05:00:00 GMT ');  
Header (' last-modified: '. Gmdate (' d, D M Y h:i:s '). ' GMT ');  
Header (' Cache-control:no-cache, Must-revalidate ');  
Header (' Pragma:no-cache ');  
?>

There's a simpler way to do this, which is when you use AJAX? mt= random Data

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.