利用浏览器缓存iis - GTMetric仍然给予F

时间:2017-06-28 19:54:14

标签: wordpress caching iis

我的web.config文件包括:

<staticContent>
        <clientCache cacheControlCustom="public" cacheControlMode="UseMaxAge" cacheControlMaxAge="2.00:00:00" />
    </staticContent>

当我进行测试时,它会显示时间范围,但给我一个F.任何想法?

https://gtmetrix.com/reports/www.tivityhealth.com/IRCSgbCg

1 个答案:

答案 0 :(得分:0)

Gtmetrix给你这个价格,因为你的缓存时间是两天。

在他们的文档(https://gtmetrix.com/leverage-browser-caching.html)中,他们建议至少设置1个月

  

至少一个月到期(建议:访问加1年)

尝试放31天:

<staticContent>
    <clientCache cacheControlCustom="public" cacheControlMode="UseMaxAge" cacheControlMaxAge="31.00:00:00" />
</staticContent>