在某些情况下,在 IIS 8.5 和 Windows 2012 R2 上设置反向代理无法正常工作

在某些情况下,在 IIS 8.5 和 Windows 2012 R2 上设置反向代理无法正常工作

我已经将 Orchard 作为 CMS 安装在我们 Web 服务器上的不同端口号上。当我尝试通过 localhost 访问它时,此 CMS 运行良好。一切看起来都很正常。但是,我想通过我们的网站将其宣传为 https://MyWebsite dot com/blog,我在某种程度上取得了成功。以下是入站和出站规则的配置:

 <rewrite>
            <outboundRules>
                <rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1" enabled="true" stopProcessing="true">
                    <match filterByTags="A, Form, Img" pattern="^http(s)?://localhost:8082/(.*)" />
                    <action type="Rewrite" value="http{R:1}://MyWebsite.com/{R:2}" />
                    <conditions>
                    </conditions>
                </rule>
                <preConditions>
                    <preCondition name="ResponseIsHtml1">
                        <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
                    </preCondition>
                </preConditions>
            </outboundRules>
            <rules>
                <rule name="ReverseProxyInboundRule1" enabled="true" stopProcessing="true">
                    <match url="blog/(.*)" />
                    <action type="Rewrite" url="http://localhost:8082/{R:0}" />
                </rule>
            </rules>
        </rewrite>

现在问题是:

1)我可以这样访问博客:https://MyWebsite dot com/blog

2)我可以这样访问 SignOut 链接:http://MyWebsite dot com/blog/SignOut

3)但是,我无法像这样访问管理门户:https://MyWebsite dot com/blog/Admin

然后,我必须在 MyWebsite.com/blog/Admin 中创建一个子文件夹,然后我才能访问管理门户。这不是一个可持续的方式,因为我必须重复相同的操作才能访问其他链接。我做错了什么,如何解决?

提前致谢!Arash

相关内容