URL根据条件重写到不同的端口

时间:2014-01-07 16:27:44

标签: iis-7.5 url-rewrite-module

我有一个类似这样的网站:

https://www.website.org/cms

我有一个应用程序在另一个服务器上运行,该服务器位于我想通过此URL访问的不同端口上的同一服务器上:

https://www.website.org/dashboard

可以使用http://localhost:8081/dashboard

从服务器访问仪表板站点

如何使用URL Rewrite实现这一目标?

1 个答案:

答案 0 :(得分:1)

实际上很简单:

<rewrite>
   <rules>
      <rule name="dashboard">
         <match url="(dashboard.+)" />
         <action type="Rewrite" url="http://localhost:8081/{R:0}" />
      </rule>
   </rules>
</rewrite>