欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!
前端测试干掉缓存

 

 

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

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/html/h57284.shtml