欢迎来到代码驿站!

Windows

当前位置:首页 > 服务器 > Windows

IIS7、iis7.5中禁止缓存单个静态文件的配置方法

时间:2021-04-01 08:16:41|栏目:Windows|点击:

IIS7中,想将一个经常修改的静态文件设置为不可缓存,在IIS配置界面里怎么也找不到...

一番google之后在stackoverflow里边发现了这样一段回答,最终解决了问题:

一、单个文件的禁止缓存的方法

just stumbled across this question; you can use the following to disable the cache on a specific file:
偶尔看到这个问题,你可以通过下面的方法来对单个文件进行禁止缓存

<configuration>
 <location path="path/to/the/file">
  <system.webServer>
   <staticContent>
    <clientCache cacheControlMode="DisableCache" />
   </staticContent>
  </system.webServer>
 </location>
</configuration>

(Note that the path is relative to the web.config file)
注意路径的写法需要相对于web.config文件的路径
Alternatively, place the single file in a directory on it's own, and give that directory it's own web.config that disables caching for everything in it;
或者是将这个文件放一个单独的目录里面,然后通过它自己的web.config文件来禁用缓存。

二、通过将文件放到一个目录里面进行设置,这个目录里的文件都不会缓存

<configuration>
 <system.webServer>
  <httpProtocol>
   <customHeaders>
    <add name="Cache-Control" value="no-cache" />
   </customHeaders>
  </httpProtocol>
 </system.webServer>
</configuration>

[Both tested on IIS7.5 on Windows 7, but you'll have to confirm that it works OK on Azure]
在win7中的iis7.5缓存也测试过,不过你需要确认他在Azure能否正常运行。

上一篇:windows2003安装apache-mysql-php-phpmyadmin

栏    目:Windows

下一篇:windows 2008 R2 64位服务器中开启php curl扩展的方法

本文标题:IIS7、iis7.5中禁止缓存单个静态文件的配置方法

本文地址:http://www.codeinn.net/misctech/92046.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有