注:nginx版本是1.14。css
咱們只要修改下nginx中的.conf文件就能夠了,以下List-1所示。如何部署靜態資源文件見個人這篇博客。html
List-1nginx
location / { ... } #下面這個就是禁止緩存 location ~ \.(js|css|html|png|jpg)$ { add_header Cache-Control no-store; }