To define your own URL routes in ASP.NET MVC4, I believe you modify Global.asax.cs so it looks something like...
using System.Web.Mvc;
using System.Web.Routing;
namespace MvcApplication1 {
public class MvcApplication : System.Web.HttpApplication {
public static void RegisterRoutes(RouteCollection routes) {
routes.MapRoute( .....
But what I cant find anywhere, is how you add multiple routes - e.g. do you just call routes.MapRoute(....) again?
Also, does this overwrite the hidden default routing definitions? If I want to keep it do I need to define it also?
/App_Start/RouteConfig.csfile.