热门关键字:
jquery > jquery教程 > div+css > 前端测试干掉缓存

前端测试干掉缓存

483
作者:管理员
发布时间:2020/4/18 16:01:58
评论数:0
转载请自觉注明原文:http://www.jq-school.com/Show.aspx?id=1363

通过配置nginx干掉 304  (from memory cache) (from disk cache)

 

server {
    listen 8080;
    server_name localhost;

    location / {
        root /your/site/public;
        index index.html;

        # kill cache
        add_header Last-Modified $date_gmt;
        add_header Cache-Control 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
        if_modified_since off;
        expires off;
        etag off;
    }
}




如果您觉得本文的内容对您的学习有所帮助:支付鼓励



关键字:前端测试
友荐云推荐