3
我們希望將IIS 7.5 output caching用於單個.aspx文件,但在iis.net上閱讀完一些內容後,緩存只能配置爲各種文件擴展名,而不能用於單個文件。這是正確的還是我錯過了什麼?是否可以爲單個頁面配置IIS 7.5輸出緩存?
謝謝。
我們希望將IIS 7.5 output caching用於單個.aspx文件,但在iis.net上閱讀完一些內容後,緩存只能配置爲各種文件擴展名,而不能用於單個文件。這是正確的還是我錯過了什麼?是否可以爲單個頁面配置IIS 7.5輸出緩存?
謝謝。
只需將視圖更改爲「內容」選擇文件,並配置它。在擴展中添加eq .js或.php。該配置將僅適用於該文件。
EQ
的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>
:
您可以檢查此