微信开发遇到的问题(单页应用静态资源缓存策略设置)
时间:2019-12-23 11:13:09
收藏:0
阅读:194
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
<httpProtocol>
<customHeaders>
<add name="Cache-Control" value="no-cache" />
</customHeaders>
</httpProtocol>
</system.webServer>
原文:https://www.cnblogs.com/gougou1981/p/12082583.html
评论(0)