我们想将IIS 7.5 output caching用于单独的.aspx文件,但在iis.net上阅读后,在我看来,缓存只能针对各种文件扩展名进行配置,但不能针对单个文件进行配置。这是正确的还是我错过了什么?
谢谢。
答案 0 :(得分:2)
只需将视图更改为“内容”选择文件,然后进行配置即可。在扩展中添加eq .js或.php。此配置仅适用于此文件。
您可以在以下位置查看:
当量
的web.config
<location path="cachedfile.php">
<system.webServer>
<caching>
<profiles>
<add extension=".php" policy="CacheForTimePeriod" kernelCachePolicy="CacheUntilChange" duration="00:30:00" />
</profiles>
</caching>
</system.webServer>
</location>