我的IIS7 web.config设置为以下内容,并带有一个静态资产文件夹(不在ASP.NET应用程序或任何其他内容中):

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <staticContent>
            <clientCache cacheControlCustom="public" cacheControlMode="UseMaxAge" cacheControlMaxAge="500.00:00:00" />
        </staticContent>
        <httpProtocol allowKeepAlive="false" />
    </system.webServer>
</configuration>

当我尝试访问Silverlight .XAP文件时,我希望IIS告诉浏览器可以将其缓存500天。

但是,这是缓存头:
Cache-Control: no-cache,public,max-age=43200000
IIS为什么仍使用上面的配置文件在此 header 中添加no-cache

最佳答案

您需要配置IIS才能将XAP视为静态内容。尝试这个:

<configuration>
   <system.webServer>
    <staticContent>
      <mimeMap fileExtension=".xaml" mimeType="application/xaml+xml" />
      <mimeMap fileExtension=".xap" mimeType="application/x-silverlight-app" />
      <mimeMap fileExtension=".xbap" mimeType="application/x-ms-xbap" />
    </staticContent>
   </system.webServer>
</configuration>

07-27 15:47