我想在IIS 8.5上为google字体指定缓存验证程序。
http://fonts.googleapis.com/css?family=Open+Sans:400,400italic,300,700,600
我在web.config上所做的是在下面;
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="10.00:00:00" />
</staticContent>
我还添加了扩展程序缓存
<caching>
<profiles>
<add extension=".woff" policy="CacheForTimePeriod" kernelCachePolicy="DontCache" duration="23:59:00" />
<add extension=".ttf" policy="CacheForTimePeriod" kernelCachePolicy="DontCache" duration="23:59:00" />
<add extension=".gif" policy="CacheForTimePeriod" kernelCachePolicy="DontCache" duration="23:59:00" />
<add extension=".js" policy="CacheForTimePeriod" kernelCachePolicy="CacheUntilChange" duration="23:59:00" />
<add extension=".png" policy="CacheForTimePeriod" kernelCachePolicy="DontCache" duration="23:59:00" />
<add extension=".jpg" policy="CacheForTimePeriod" kernelCachePolicy="DontCache" duration="23:59:00" />
<add extension=".css" policy="CacheForTimePeriod" kernelCachePolicy="CacheUntilChange" duration="23:59:00" />
</profiles>
</caching>
但我仍然无法为我使用的Google字体应用缓存验证程序。我也试图将过期时间设置为例如。 2030年5月的静态内容,但谷歌PageSpeed也没有认识到这一点。 *我设法用.httaccess做了,并检查了stackoverflow上的.htaccess主题。 *