IIS7:缓存设置不起作用...为什么?

发布于 2024-11-10 03:57:05 字数 697 浏览 0 评论 0原文

我的 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 仍然向此标头添加 no-cache 并使用上面的配置文件?

My IIS7 web.config is set to the following with a folder of static assets (not within an ASP.NET app or anything):

<?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>

When I try to access a Silverlight .XAP file, I expect IIS to tell the browser that it can be cached for 500 days.

However, this is the cache header:

Cache-Control: no-cache,public,max-age=43200000

Why is IIS still adding no-cache to this header with the above configuration file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿挽旧人 2024-11-17 03:57:05

您需要配置 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> 

You need to configure IIS to treat XAP as static content. Try this:

<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> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文