nginx中取消对js|css等的缓存

    注:nginx版本是1.14。css

    咱们只要修改下nginx中的.conf文件就能够了,以下List-1所示。如何部署静态资源文件见个人这篇博客html

    List-1nginx

location / {
    ...
}

#下面这个就是禁止缓存
location ~ \.(js|css|html|png|jpg)$ {
    add_header Cache-Control no-store;
}
相关文章
相关标签/搜索