一些站点是共享主机(Windows 2003服务器),所以我没有办法访问服务器配置。
我到处读关于利用浏览器缓存,特别是静态文件(jpg, css, js等),但是…我该怎么做呢?
主机安装了。net,可以是web。配置文件在某种程度上有帮助?如果是,怎么做?
这是我在共享主机上的网站上的做法。我相信cacheControlMaxAge是这样的:天:小时:分钟:秒,但不要引用我。
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="3.00:00:00" />
</staticContent>
</system.webServer>
Google pagesspeed Tools将通过在您的网页中提供cacheControlMaxAge来提高评级。配置文件,但如果你想完全解决问题,然后使用7天(表示为天:小时:分钟:秒)捕获最大年龄
是解决它的代码把这段代码放到web.config
中<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.24:00:00" />
</staticContent>
</system.webServer>