我在web.config中有这个:
<system.webServer>
<httpProtocol>
<customHeaders>
<clear />
<add name="Cache-Control" value="max-age=30,public" />
</customHeaders>
</httpProtocol>
</system.webServer>
但是当我加载页面时,这是响应头:
Cache-Control: private,max-age=30,public
它是一个ASP.NET MVC应用程序,控制器没有在任何地方指定缓存指令。
答案 0 :(得分:4)
试试这个
<system.web>
<httpRuntime sendCacheControlHeader="false" />
</system.web>
让我们知道它是怎么回事。
杰森