ASP.Net MVC 如何修复 expiration not specified 问题

使用 GTmetrix 测试网站加载速度使发现静态文件都显示 expiration not specified 的提示。

建议里只有 Apache Server 通过配置 .htaccess 文件设置过期时间的方法,ASP.Net MVC 中呢则是需要修改 Web.config 文件。

<system.webServer>
    <staticContent>
        <clientCache cacheControlCustom="private" cacheControlMode="UseMaxAge" cacheControlMaxAge="10.00:00:00" />
    </staticContent>
</system.webServer>