我正在尝试将 Cache-Control:no-cache,no-store 添加到HTTP响应头。我将以下内容添加到Web.config:
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</configuration>
它在标题中产生 Pragma:no-cache 指令。
CONNECT ...:443 HTTP/1.0
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko
Connection: Keep-Alive
Content-Length: 0
Host: ...
Pragma: no-cache
这相当于 Cache-Control:no-cache 吗?如何更改Web.Config在IIS 8.5的HTTP头中生成 Cache-Control:no-cache,no-store ?提前谢谢。