我无法将图像文件缓存。我已尝试过在本网站和其他网站上找到的所有内容,但仍无法将其缓存。
我尝试过的网络配置设置
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="1.00:00:00" />
</staticContent>
<httpProtocol allowKeepAlive="true" />
<caching enabled="true" enableKernelCache="true">
<profiles>
<add extension=".png" policy="CacheUntilChange" />
<add extension=".jpg" policy="CacheForTimePeriod" duration="12:00:00" />
</profiles>
</caching>
以下是其中一张图片的响应标题
Key Value
Response HTTP/1.1 200 OK
Cache-Control no-cache
Content-Type image/png
Last-Modified Thu, 16 Dec 2004 18:33:28 GMT
Accept-Ranges bytes
ETag "a1ca4bc9de3c41:0"
Server Microsoft-IIS/7.5
X-Powered-By ASP.NET
Date Fri, 18 May 2012 13:21:21 GMT
Content-Length 775
答案 0 :(得分:33)
以下内容应使浏览器缓存您的图片:
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="1.00:00:00" />
</staticContent>
<httpProtocol>
<customHeaders>
<add name="Cache-Control" value="public" />
</customHeaders>
</httpProtocol>
<caching>...</caching>
块用于服务器端缓存,而不是客户端缓存。
答案 1 :(得分:0)
如果有人需要将您的网站配置为Chrome Audits或GTMetrix,则我已使用以下内容配置了我的环境(感谢Marco answer):
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="365.00:00:00" />
使用365
天,两个工具都将该值视为缓存时间可接受的值。