IIS 7.5 使用 gzip 将反向代理 URL 重写到网站

IIS 7.5 使用 gzip 将反向代理 URL 重写到网站

如果我们拥有 www.ourdomain.com 并想将网址重写为 www.google.com,那么我们将如何处理 google 域名上的 gzip 压缩。我正在尝试进行概念验证,我认为问题是我们尝试重写的网站使用 gzip,因此 IIS 无法读取内容?我已禁用我们这边的所有压缩。我们需要某种先决条件吗?

HTTP 错误 500.52 - URL 重写模块错误。当 HTTP 响应的内容经过编码(“gzip”)时,无法应用出站重写规则。

    <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <urlCompression doStaticCompression="false" doDynamicCompression="false" dynamicCompressionBeforeCache="false" />
    <rewrite>
      <outboundRules>
        <rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
          <match filterByTags="A, Form, Img" pattern="https://google.com/(.*)" />
          <action type="Rewrite" value="http{R:1}://ourdomain.com/{R:2}" />
        </rule>
      </outboundRules>
      <rules>
        <rule name="ReverseProxyInboundRule1" stopProcessing="true">
          <match url="(.*)" />
          <action type="Rewrite" url="http://google.com/{R:1}" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

答案1

经过多次尝试后找到了答案

      <serverVariables>
        <set name="HTTP_Accept-Encoding" value="" />
      </serverVariables>

相关内容