我已将最大年龄设置为 1 分钟,但是当我查看响应标头时,我看到 max-age=86400(一天)。是否有其他东西覆盖了此设置?对于大多数 mime 类型,我还将内核缓存设置为 1 分钟,以确保这不是源。还有其他地方我应该寻找替代吗?另一个 webconfig 设置?
这是 webconfig 的相关部分。
<system.webServer>
<urlCompression doDynamicCompression="true" doStaticCompression="true" dynamicCompressionBeforeCache="true" />
<caching enabled="true">
<profiles>
<add extension=".gif" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".png" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".js" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".css" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".jpg" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".jpeg" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
</profiles>
</caching>
<staticContent>
<!--Enable gzipping JS by changing the mime type.-->
<remove fileExtension=".js" />
<mimeMap fileExtension=".js" mimeType="text/javascript" />
<!-- d.hh:mm:ss -->
<clientCache cacheControlMode="UseMaxAge" httpExpires="0.00:01:00" />
应该使用
代替
但后者不会抛出错误,只是不起作用。
只是为了让我们清楚它应该如何