是否有一种简单的方法可以将过期标题添加到来自appharbor网站的静态内容?我有一堆图像,CSS和javascript文件,没有到期设置,并让我回到yslow。
答案 0 :(得分:4)
您可以在Web.config中执行此操作:
<system.webServer>
<staticContent>
<clientCache httpExpires="Sun, 29 Mar 2020 00:00:00 GMT" cacheControlMode="UseExpires" />
</staticContent>
</system.webServer>