ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

IIS 缓存, 更新后前端资源不能更新问题

2026/8/2 16:56:17 拓冰建站 浏览量
IIS 缓存, 更新后前端资源不能更新问题

解决办法: 

通常只需要index.html 不缓存即可, 其他文件都是根据index.html 中的引用去加载;

正确的做法是在 站点下增加 web.config 文件, 内容如下:

我这个是因为目录下有个config.js 配置文件, 也不能缓存, 所以加了两个

<?xml version="1.0" encoding="UTF-8"?>
<configuration><location path="index.html"><system.webServer><staticContent><clientCache cacheControlMode="NoControl" /></staticContent><httpProtocol><customHeaders><add name="Cache-Control" value="no-store" /></customHeaders></httpProtocol></system.webServer></location><location path="config.js"><system.webServer><staticContent><clientCache cacheControlMode="NoControl" /></staticContent><httpProtocol><customHeaders><add name="Cache-Control" value="no-store" /></customHeaders></httpProtocol></system.webServer></location>
</configuration>

效果: