Files
LeafWeb/Web/App_Start/RouteConfig.cs
T

20 lines
399 B
C#

using System.Web.Mvc;
using System.Web.Routing;
namespace Web
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Pages", action = "Index", id = UrlParameter.Optional }
);
}
}
}