IIS7:缓存设置不起作用...为什么?
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要配置 IIS 以将 XAP 视为静态内容。试试这个:
You need to configure IIS to treat XAP as static content. Try this: