我可以将 IIS 配置为将流量路由到另一台服务器吗?

Can I configure IIS to route traffic to another server?

我在 website.com 有一台 Windows 服务器可用,我还有另一台装有 WordPress 的服务器。

如何配置 IIS 以将 website.com/blog 路由到我的 WordPress?

我尝试使用虚拟目录,但我只能将我的用户发送到同一台服务器。

根据你的描述,我建议你可以考虑使用ARR反向代理来实现你的需求。

我建议您可以使用此 link and this link.

安装 ARR

那我建议你可以尝试使用下面的url重写规则。

            <rule name="ReverseProxyInboundRule2" stopProcessing="true">
                <match url="/blog/(.*)" />
                <action type="Rewrite" url="http://ec2 ubuntu address/{R:1}" />
            </rule>

谢谢,它成功了,但我不得不向我的 web.config 添加更多代码。

我的web.config:

<rewrite> 
            <rules> 
<clear />
                <rule name="Route the requests for Company1" enabled="true" patternSyntax="ECMAScript" stopProcessing="false"> 
                    <match url="(.*)" /> 
                    <conditions>
                        <add input="{CACHE_URL}" pattern="^(https?)://" /> 
                    </conditions> 
                    <action type="Rewrite" url="https://blog.raczum.com/{R:0}" /> 
                    <serverVariables>
                        <set name="HTTP_ACCEPT_ENCODING" value="" /> 
                    </serverVariables> 
                </rule> 

        <rule name="Route the subfolder blog" enabled="false" patternSyntax="Wildcard" stopProcessing="false"> 
                    <match url="https://raczum.com/blog/*" /> 
                    <conditions>
                        <add input="{CACHE_URL}" pattern="^(https?)://" /> 
                    </conditions> 
                    <action type="Rewrite" url="https://blog.raczum.com/{R:1}" /> 
                    <serverVariables>
                        <set name="HTTP_ACCEPT_ENCODING" value="" /> 
                    </serverVariables> 
                </rule>             </rules> 
            <outboundRules> 
                <rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1" enabled="true" stopProcessing="false"> 
                    <match filterByTags="A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script" pattern="^http(s)?://blog.raczum.com/(.*)" /> 
                    <action type="Rewrite" value="/blog/{R:2}" />
                    <conditions logicalGrouping="MatchAny" trackAllCaptures="false" /> 
                </rule> 
                <rule name="RewriteRelativePaths" preCondition="ResponseIsHtml1" enabled="true" stopProcessing="false"> 
                    <match filterByTags="A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script" pattern="^http(s)?://blog.raczum.com/(.*)$" negate="false" /> 
                    <action type="Rewrite" value="/blog/{R:2}" /> 
                </rule> 
                <preConditions> 
                    <preCondition name="ResponseIsHtml1" patternSyntax="Wildcard">
                        <add input="{RESPONSE_CONTENT_TYPE}" pattern="*" /> 
                    </preCondition>
                    <preCondition name="ResponseIsHtml2">
                        <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
                    </preCondition> 
                </preConditions> 
            </outboundRules> 
        </rewrite>