私は自分のサイトをdiffのURLに書き換えているので、ヘッダを渡す必要があります。サーバー変数IISヘッダーリライトでヘッダーをヘッダーで渡す方法
これですべてが問題ありません。しかし、1つのヘッダー名にアンダースコア(_)が付いています。
<rewrite>
<rules>
<rule name="ReverseProxyInboundRule2" patternSyntax="Wildcard" stopProcessing="false">
<match url="*core*" />
<action type="Rewrite" url="http://xxxxxxx/yyyyy/core{R:2}" logRewrittenUrl="true" />
<serverVariables>
<set name="HTTP_name" value="name" />
<set name="HTTP_address" value="address" />
<set name="HTTP_phone_number" value="1234567890" />
</serverVariables>
</rule>
</rules>
<outboundRules>
<preConditions>
<preCondition name="ResponseIsHtml1">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
</outboundRules>
</rewrite>
すべてのアンダースコア(PHONE_NUMBER)はハイフン(電話番号)に変換しますので、必要なヘッダが渡されていません。
私はこれで私を助けてください
PHONE_NUMBER渡す必要があります。