To whom knows HTTP and HTML headers : I have a project for which I need to avoid the caching of a webpage. I have a basic knowledge of HTML, I found on the web that to avoid the caching I need to put some tags in the HTML code. I put the following tags :
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate, max-age=0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
which I took on another post. However, I still get my page cached for one hour by the servers and the HTTP header response from the server: Cache-Control: max-age=3600 Anyone have a cue ? How can I get Cache-Control: max-age=0 ? Anything wrong in my code ?