2

我预计这也会像http://localhost/那样映射默认主页,但它没有被命中。

RouteTable.Routes.Add(new Route("{Keyword}", new HomeHandler()));

问题当然是为什么不呢?我想将根映射到其他页面。

4

2 回答 2

2

我还没有尝试过,但尝试从 IIS 的配置中删除默认文档。对于 IIS 7,此设置位于web.config

<configuration>
 <system.webServer>
  <defaultDocument>
   <files>
    <clear />
   </files>
  </defaultDocument>
 </system.webServer>
</configuration>
于 2009-10-10T08:06:19.887 回答
1

答案有些复杂。它在 IIS6 上,我们必须添加一个特定的属性。我真的不记得我们当时做了什么,但你可以用谷歌搜索,我就是这样找到的。

于 2009-12-31T11:26:39.500 回答