Google PageSpeed建议将以下内容作为我的网站的高优先级。
以下可缓存资源具有较短的新鲜生命周期。为以下资源指定至少一周后的到期时间:
并建议进一步阅读。
我正在使用 Windows Server 2008 r2、.net 框架 4.0、asp.net 和 IIS 7.5。如何增加某些文件的缓存过期时间?
我尝试了以下 web.config,但它不起作用。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<sessionState mode="Off" />
</system.web>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="10.00:00:00" />
</staticContent>
</system.webServer>
</configuration>