Skip to content

HTML : Avoid Page Cache

this an old trick, but very useful for me, especially when dealing with html page only or simple php,

here you go, put this code inside <head> tag:

<meta http-equiv=”cache-control” content=”max-age=0″ />
<meta http-equiv=”cache-control” content=”no-cache” />
<meta http-equiv=”expires” content=”0″ />
<meta http-equiv=”expires” content=”Tue, 01 Jan 1980 1:00:00 GMT” />
<meta http-equiv=”pragma” content=”no-cache” />

Share

One Comment

Leave a Reply to Anonymous Cancel reply

Your email address will not be published. Required fields are marked *