我在IIS7中有一个aspx网站,根目录中有一个虚拟文件夹(称为“ app ”),这是另一个aspx应用程序。
我希望 www.main.com/section 显示来自 www.other.com/page 的内容。 但是, www.main.com/section/app ,我想忽略之前的重定向(它将是虚拟文件夹内容)。
我无法让这个工作。这就是我所拥有的:
<rule name="Landing page" enabled="true">
<match url="landing" />
<action type="Rewrite" url="http://www.other.com/page" />
</rule>
这可能吗?