IIS 7 Url使用虚拟目录

时间:2016-01-11 12:22:39

标签: asp.net redirect url-rewriting iis-7

我在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>

这可能吗?

1 个答案:

答案 0 :(得分:1)

感谢您的回答。

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