Www.ourdomain.comを所有していて、URLをwww.google.comに書き換えたい場合、たとえばgoogleドメインでgzip圧縮をどのように処理しますか。概念実証を行おうとしていますが、問題はgzipを使用して再作成しようとしているWebサイトであると考えているため、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>
たくさん遊んだ後、答えを見つけました
<serverVariables>
<set name="HTTP_Accept-Encoding" value="" />
</serverVariables>