0

我在我的一个 SharePoint 网站上收到此错误。

4

2 回答 2

0

我必须在我的 web.config 中更改此设置

<urlCompression
 doDynamicCompression="true"
 doStaticCompression="true"
 dynamicCompressionBeforeCache="<this should be false>"/>

将 dynamicCompressionBeforeCache 设置为 false,它对我有用。

感谢这篇文章: http ://www.sitefinity.com/devnet/forums/general-discussions-/post-cache-substitution-is-not-compatible-with-modules-in-the-iis-integrated-pipeline-修改响应缓冲区

于 2012-11-22T09:58:41.170 回答
0

对我来说,禁用 web.config 中的输出缓存是有效的,如下所示:

<system.web>
    <caching>
        <outputCache enableOutputCache="false"/>
    </caching>
</system.web>
于 2021-05-25T06:44:32.967 回答