IIS 7 Url 用虚拟目录重写

IIS 7 Url Rewrite with virtual directory

我在 IIS7 中有一个 aspx 网站,根目录中有一个虚拟文件夹(称为“app”),这是另一个 aspx 应用程序。

我希望www.main.com/section显示来自www.other.com/page[=的内容24=]。 但是,www.main.com/section/app,我想忽略之前的重定向(它将虚拟文件夹内容)。

我无法让它工作。这是我的:

<rule name="Landing page" enabled="true">
  <match url="landing" />
  <action type="Rewrite" url="http://www.other.com/page" />
</rule>

这可能吗?

感谢您的回答。

我想我必须使用 url rewrite and Application Request Routing