使用不同的目录结构进行 ARR+URL 重写并返回 500 错误

使用不同的目录结构进行 ARR+URL 重写并返回 500 错误

我已使用 ARR + URL Rewrite IIS7.5 为反向代理设置了以下配置集

我正在尝试通过前端网站 www.proxyurl.com/ 代理 www.originurl.com/e/。

注意,我正在使用虚拟目录将代理 URL 映射到原始 URL。我收到 500 错误。您知道我在这里做错了什么吗?

<?xml version="1.0" encoding="UTF-8"?> 
<configuration>
<system.webServer>
    <rewrite>
        <rules>
            <rule name="ReverseProxyInboundRule1" stopProcessing="true">
                <match url="(.*)" />
                <conditions>
                    <add input="{CACHE_URL}" pattern="^(https?)://" />
                </conditions>
                <action type="Rewrite" url="{C:1}://www.originurl.com/e/{R:1}" />
            </rule>
        </rules>
        <outboundRules>
            <rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
                <match filterByTags="A, Form, Img" pattern="^http(s)?://www.originurl.com/e/(.*)" />
                <action type="Rewrite" value="http{R:1}://www.proxyurl.com/{R:2}" />
            </rule>
            <preConditions>
                <preCondition name="ResponseIsHtml1">
                    <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
                </preCondition>
            </preConditions>
        </outboundRules>
    </rewrite>
</system.webServer> 
</configuration> 

答案1

要代理你应该使用应用程序请求路由(ARR)模块。这是一个真正的反向代理选项。

“重定向”是客户端重定向到另一个 URL,而“重写”(在您的示例中)在到达磁盘之前在后端更改 URL,但它不是代理。重写是同一站点的本地重写,并且不能跨越应用程序池边界。

相关内容