how to set up both httpexpires and cachecontrol headers(如何设置 httpexpires 和 cachecontrol 标头)
问题描述
我想在 web.config
中设置 expires 和 cachecontrol
和 httpExpires
标头按照该问题的答案Expires 和 Cache-control:max-age 有什么区别?
I want to set up both expires and cachecontrol
and httpExpires
headers in web.config
by following the answer on that question
What's the difference Expires and Cache-control:max-age?
<system.webServer>
<staticContent>
<clientCache cacheControlCustom="public" cacheControlMaxAge="12:00:00" cacheControlMode="UseMaxAge" />
<clientCache cacheControlCustom="public" httpExpires="Tue, 19 Jan 2038 03:14:07 GMT" cacheControlMode="UseExpires" />
</staticContent>
</system.webServer>
但由于某种原因,当我这样做时,图像变得不可用.
But for some reason images became not available when I am doing that.
我有 Failed to load resource: 服务器响应状态为 500 (Internal Server Error)
每次图像加载错误(我可以在 浏览器开发工具中看到错误控制台
).
I've got Failed to load resource: the server responded with a status of 500 (Internal Server Error)
error on each image load (I can see that errors in browser dev tools console
).
我猜我配置错了?
如果我通过只留下一个来评论任何 clientCache
部分,它会起作用
It would work if I comment any of clientCache
section by leaving only single one
如何解决?
更新:刚刚问了另一个相关问题 如何设置httpexpires 和 cachecontrol 标头 web.cofig:
UPDATED: Just asked one more related question how to set up both httpexpires and cachecontrol headers web.cofig:
推荐答案
这个 IIS 客户端缓存页面 声明虽然Expires"和max-age"设置有些类似,但max-age"指令优先于Expires".但是,当一个max-age"clientCache 条目与一个Expires"clientCache 条目并行使用时,IIS 会生成 HTTP 500 错误.
This IIS Client Cache page states that 'While the "Expires" and "max-age" settings are somewhat analagous, the "max-age" directive takes priority over "Expires"'. However, IIS generates HTTP 500 errors when one "max-age" clientCache entry was used in parallel with an "Expires" clientCache entry.
在 IIS 中调整Set Common Headers"时,Expires"和max-age"相互排斥.您可以使用其中一种,但不能同时使用.
The "Expires" and "max-age" are mutually exclusive of one another when adjusting the "Set Common Headers" in IIS. You can use one or the other, but not both.
其他缓存指令可以应用于 Web.config 中的子文件夹或特定文件.请参阅此 stackoverflow 页面关于在 IIS7 中配置缓存内容.
Other cache directives can be applied to subfolders or specific files in Web.config. See this stackoverflow page on configuring cache content in IIS7.
这篇关于如何设置 httpexpires 和 cachecontrol 标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何设置 httpexpires 和 cachecontrol 标头
基础教程推荐
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01