我有一个使用Twilio,这个应用程序有两组非常不同的音频文件:
目前我必须为我的文件设置所有缓存,因为我无法弄清楚如何在将文件发送到twilio之前设置不同的到期日期,问题是twilio直接从网站下载文件,据我所知,我无法使用ASP.net设置缓存
我在目前我的文件目录中的web.config中使用下面的xml,但我找不到为不同文件指定不同值的方法,例如:
甚至可能吗?
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</configuration>
答案 0 :(得分:0)
Twilio传道者在这里。
看起来您可以使用<location>
元素来定义具有不同缓存策略的不同文件夹:
How to configure static content cache per folder and extension in IIS7?
希望有所帮助。