Disable caching in HTML Page

From Bitbull Wiki
Jump to navigation Jump to search
<HTML>
    <HEAD>
        <META HTTP-EQUIV="expires" CONTENT="0">
        <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
        <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
        <meta http-equiv="cache-control" content="max-age=0" />
        <meta http-equiv="expires" content="0" />
        <meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
    </HEAD>
    <BODY>
       blah blah
    </BODY>
</HTML>