在 ASP.NET 中,IIS 反向代理无法与 Response.Redirect() 配合使用

在 ASP.NET 中,IIS 反向代理无法与 Response.Redirect() 配合使用

我正在尝试使用教程设置反向代理这里这里这里

该网站建立于localhost:8080,并使用 反向代理localhost:8080/myProxy

处理标准链接时,一切都很好。我可以查看代理 URL,一切如预期。从localhost:8080/myProxy/default.aspx到 的链接localhost:8080/myProxy/about.aspx如预期一样。

我遇到的问题是,当Response.Redirect()使用 .NET 时,url 会更改为网站的实际位置而不是代理。

即链接从localhost:8080/myproxy/default.aspx->开始localhost:8080/about.aspx

请问我该如何解决这个问题?

这是我的配置:

<system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <urlCompression doStaticCompression="false" doDynamicCompression="false" 
                    dynamicCompressionBeforeCache="false" />
    <rewrite>
        <rules>
            <rule name="Reverse Proxy to my site" stopProcessing="true">
                <match url="^myProxy/(.*)" />
                <action type="Rewrite" url="http://localhost:8080/{R:1}" />
            </rule>
        </rules>

        <outboundRules>
            <rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
                <match filterByTags="A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script"
                       pattern="^http(s)?://localhost:8080/(.*)" />
                <action type="Rewrite" value="/myProxy/{R:2}" />
            </rule>
            <rule name="RewriteRelativePaths" preCondition="ResponseIsHtml1">
                <match filterByTags="A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script" 
                       pattern="^/(.*)" negate="false" />
                <action type="Rewrite" value="/myProxy/{R:1}" />
            </rule>
            <preConditions>
                <preCondition name="ResponseIsHtml1">
                    <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
                </preCondition>
            </preConditions>
        </outboundRules>

    </rewrite>
</system.webServer>

答案1

很抱歉回答我自己的问题,但我认为这值得向其他人提供信息:

使用时Response.Redirect,出站规则开始发挥作用。使用 Fiddler 查看请求有助于了解链接发生了什么。

Response.Redirect()正试图发送到/About.aspx(响应标头中的传输)。

正则表达式并没有发现这一点。

我唯一需要的出站规则是配置Response_location如下:

<rule name="Response Status Update" preCondition="ResponseStatus" stopProcessing="true">
  <match serverVariable="RESPONSE_Location" pattern="^/(.*)" />
  <action type="Rewrite" value="http://myServer:8080/myProxy/{R:1}" />
</rule>

入站规则保持不变。

相关内容