前端测试干掉缓存

2022-10-17,,

 

 

通过配置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;
    }
}

 

《前端测试干掉缓存.doc》

下载本文的Word格式文档,以方便收藏与打印。