如何指定Last-Modified或ETag标头以在IIS 8.5上启用缓存验证

时间:2015-03-08 10:35:23

标签: caching iis iis-8.5 google-pagespeed

我想在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主题。 *

0 个答案:

没有答案