2011-09-03 47 views
0

排除图标目前我有clientCache Web.config文件缓存用于缓存的所有统计的内容:从clientCache部分

<staticContent> 
     <clientCache httpExpires="Sun, 29 Mar 2020 00:00:00 GMT" cacheControlMode ="UseExpires"/> 
</staticContent> 

但我想排除缓存favicon.ico的(或使其失效日期以下)。有什么办法可以实现它吗?

回答

3

尝试增加<location><configuration>标签,说明它应只应用于该文件 - 这样的事情(只是举个例子 - 从实际工作配置,其中相比的favicon.ico有不同的到期时间拍摄所有其他文件):

<?xml version="1.0" encoding="UTF-8"?> 
<configuration> 
    <system.webServer> 
    ... 
    <!-- your site config here --> 
    ... 
    </system.webServer> 
    <location path="favicon.ico"> 
     <system.webServer> 
      <staticContent> 
       <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="366.00:00:00" /> 
      </staticContent> 
     </system.webServer> 
    </location> 
</configuration>