有些东西迫使响应具有缓存控制:IIS7中的私有

时间:2012-06-06 04:19:21

标签: iis-7 web-config http-headers cache-control

我在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应用程序,控制器没有在任何地方指定缓存指令。

1 个答案:

答案 0 :(得分:4)

试试这个

<system.web>
    <httpRuntime sendCacheControlHeader="false" /> 
 </system.web>

让我们知道它是怎么回事。

杰森