vote up 0 vote down star

Hi,

I expected this would also map the default homepage as in http://localhost/ but it is not hit.

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

Question is of course why not? I would like to map the root to some other page.

flag
Could you show your complete routing table? – Darin Dimitrov Oct 10 at 8:08

2 Answers

vote up 0 vote down

Looks like I am also facing the same issue, how do we enable Routing on root and still allow default page to get executed?.

link|flag
vote up 0 vote down

I haven't tried this yet but try removing the default document from IIS's configuration. For IIS 7 this setting is in web.config:

<configuration>
 <system.webServer>
  <defaultDocument>
   <files>
    <clear />
   </files>
  </defaultDocument>
 </system.webServer>
</configuration>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.