我有一个类似这样的网站:
https://www.website.org/cms
我有一个应用程序在另一个服务器上运行,该服务器位于我想通过此URL访问的不同端口上的同一服务器上:
https://www.website.org/dashboard
可以使用http://localhost:8081/dashboard
如何使用URL Rewrite实现这一目标?
答案 0 :(得分:1)
实际上很简单:
<rewrite>
<rules>
<rule name="dashboard">
<match url="(dashboard.+)" />
<action type="Rewrite" url="http://localhost:8081/{R:0}" />
</rule>
</rules>
</rewrite>