How to Prevent Caching of your Web Page

To request that your web page not be cached, you must put a No-Cache directive in the <HEAD> section of the web page.

<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">

<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"> is the HTTP/1.1 compliant method of requesting that a web page not be cached.

<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">

<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"> was the HTTP/1.0 compliant method of requesting that a web page not be cached.

Discuss How to Prevent Caching of your Web Page in the forums.

 
(0 - user rating)

You need to login or register to post comments.