prag...">
美文网首页
meta标签清缓存 http-equiv属性

meta标签清缓存 http-equiv属性

作者: 我自静默向韶华 | 来源:发表于2020-02-19 10:40 被阅读0次

    标签添加内容

    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Cache-Control" content="no-cache , no-store, must-revalidate">
    <meta http-equiv="Expires" content="0">
    

    <meta http-equiv="pragma" content="no-cache">

    pragmano-cache用于定义页面缓存,不缓存页面(为了提高速度一些浏览器会缓存浏览者浏览过的页面,通过下面的定义,浏览器一般不会缓存页面,而且浏览器无法脱机浏览。)

    <meta http-equiv="Cache-Control" content="no-cache">

    常见的取值有private、no-cache、max-age、must-revalidate等,默认为private,根据不同的重新浏览方式分为以下几种情况:
    1.打开新窗口值为private、no-cache、must-revalidate,那么打开新窗口访问时都会重新访问服务器。 而如果指定了max-age值,那么在此值内的时间里就不会重新访问服务器,例如: Cache-control: max-age=8(表示当访问此网页后的8秒内再次访问不会去服务器)

    2. 在地址栏回车值为private或must-revalidate则只有第一次访问时会访问服务器,以后就不再访问。 值为no-cache,那么每次都会访问。 值为max-age,则在过期之前不会重复访问。

    3.按后退按扭值为private、must-revalidate、max-age,则不会重访问, 值为no-cache,则每次都重复访问 。

    4.按刷新按扭无论为何值,都会重复访问 Cache-control值为no-cache时,访问此页面不会在Internet临时文件夹留下页面备份。

    <meta http-equiv="Expires" content="0">

    指定Expires值为一个早已过去的时间,那么访问此网站时若重复在地址栏按回车,那么每次都会重复访问: Expires: Fri, 31 Dec 1999 16:00:00 GMT 比如:禁止页面在IE中缓存 http响应消息头部设置: CacheControl = no-cache Pragma=no-cache Expires = -1 Expires是个好东东,如果服务器上的网页经常变化,就把它设置为0,表示立即过期。

    相关文章

      网友评论

          本文标题:meta标签清缓存 http-equiv属性

          本文链接:https://www.haomeiwen.com/subject/qdnofhtx.html