我在IIS 7.5中使用URL重写和应用程序请求路由为几个需要集成到现有网站的博客设置反向代理。多个域绑定到IIS中的一个网站,每个域都将获得一个托管在其他地方的博客 - 其中ARR和URL重写进入。我遇到的问题是在我的出站规则集中服务器变量{HTTP_HOST}拉动内容服务器的主机名而不是代理服务器的主机名。是否有一个我可以使用的服务器变量,它会给我代理服务器的主机hame?这是一个博客的规则集,其中有一些简短的评论要澄清:
<rewrite>
<rules>
<rule name="Route requests for contentserver blog" stopProcessing="true">
<match url="^blog/(.*)" />
<conditions trackAllCaptures="true">
<add input="{CACHE_URL}" pattern="^(https?)://" />
<add input="{HTTP_HOST}" pattern="(www\.)proxyserver\.com$" /> <!--this works-->
</conditions>
<action type="Rewrite" url="{C:1}://blog.contentserver.com/{R:1}" />
</rule>
</rules>
<outboundRules>
<rule name="Rewrite Relative URLs" preCondition="ResponseIsHtml" stopProcessing="true">
<match filterByTags="A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script" pattern="^/(.*)" negate="false" />
<action type="Rewrite" value="/blog/{R:1}" />
<conditions>
<add input="{URL}" pattern="^/blog/" />
<add input="{HTTP_HOST}" pattern="^(www\.)proxyserver\.com$" /> <!--this doesnt work because it's grabbing the content server's host, not the proxy server's host-->
</conditions>
</rule>
<rule name="Rewrite Absolute URLs" preCondition="ResponseIsHtml" stopProcessing="true">
<match filterByTags="A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script" pattern="^(https?)://blog\.contentserver\.com(/(.*))?" />
<action type="Rewrite" value="/blog/{R:3}" />
<conditions>
<add input="{HTTP_HOST}" pattern="^(www\.)proxyserver\.com$" /> <!--this doesnt work because it's grabbing the content server's host, not the proxy server's host-->
<add input="{URL}" pattern="^/blog/" />
</conditions>
</rule>
<preConditions>
<preCondition name="ResponseIsHtml">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
</outboundRules>
</rewrite>
在我弄清楚这一点之前,我只是要确保博客网址是唯一的,即proxyserversite1 / blog1和proxyserversite2 / blog2,但我希望能够在出站规则中获取代理服务器主机,以便我可以将它们命名为proxyserversite1 / blog和proxyserversite2 / blog。有什么想法吗?
答案 0 :(得分:14)
添加到入站规则:
<serverVariables>
<set name="HTTP_PRX_HOST" value="{HTTP_HOST}" />
</serverVariables>
将HTTP_PRX_HOST添加到允许的服务器变量(操作窗格 - >查看服务器变量 - >添加)
在出站规则中使用{HTTP_PRX_HOST}