0

bundling在 MVC4 中用于管理cssjs文件,但我没有找到在 MVC4 中管理/缓存图像和媒体文件的好解决方案。

我应该为此运行另一个静态文件服务器吗?

4

1 回答 1

1

您可以通过 web.config 和staticContent/clientCache元素为静态内容配置 IIS 缓存标头。

就像是

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <staticContent>
      <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="01:00:00" />
    </staticContent>
  </system.webServer>
</configuration>

对于一小时缓存策略。

于 2012-10-21T14:14:51.953 回答