There are two ways to add:
1, directly through the NuGet management tool, direct search Routedebug search to the version of the response, and then directly installed into the project (she will automatically help you configure in the configuration file)
2, Manual download Good RouteDebugger.dll, by reference to add to the program, and then in the Web. config file <appSettings> node down configuration
<appSettings>
<add key= "webpages:version" value= "2.0.0.0"/>
<add key= "webpages:enabled" value= "false"/>
<add key= "Preserveloginurl" value= "true"/>
<add key= "clientvalidationenabled" value= "true"/>
<add key= "unobtrusivejavascriptenabled" value= "true"/>
<!--Routedebugger Plug-in configuration-
<add key= "routedebugger:enabled" value= "true"/>
</appSettings>
Note: The following versions of MVC4 are manually registered in the global file.
Register Routedebugger Plugin
RouteDebug.RouteDebugger.RewriteRoutesForTesting (routetable.routes);
3, after the configuration, the request page will appear the following interface
Powerful routing (route) Debug plugin: Routedebugger