-1

I added a help page to my Web API 2 project following these instructions: msdn app help page

How on run time do I enable to always display the help page without having to type help in the URL. When I set Index.cshtml as start page I get a 404 error. Thanks!

Angel Cloudwalker
  • 2,015
  • 5
  • 32
  • 54

2 Answers2

0

You would have to add a route, something like:

config.Routes.MapHttpRoute("Help", "", new { area = "Help" }

I've not tested this as it's been a long time since I used Help Pages, but it's the way I would do it, or at least try!

matt_lethargic
  • 2,706
  • 1
  • 18
  • 33
0

Put the word 'help' (no quotes) as the start page.

lcryder
  • 486
  • 2
  • 8