标签:head code lin button class 页面 name 配置 也会
传统多页面应用:
html中的css,js文件一般通过加版本号来更新,但html页面修改后部分机型也会有缓存,导致修改不生效。
解决办法:
在nginx配置,访问html文件时,强制不缓存:
location ~ .*.(htm|html)?$ {
add_header Cache-Control "no-store, no-cache";
}
location /user {
if ($request_filename ~* .*\.(?:htm|html)$)
{
add_header Cache-Control "no-store, no-cache";
add_header Pragma no-cache;
add_header Expires 0;
}
}
标签:head code lin button class 页面 name 配置 也会
原文地址:https://www.cnblogs.com/alwaysontheroad/p/14865713.html