前端测试干掉缓存
程序员文章站
2022-12-21 09:09:53
通过配置nginx干掉 304 (from memory cache) (from disk cache) ......
通过配置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; } }
上一篇: 烤梨吃了到底好不好,自己在家怎么做