Files
LeafWeb/Web/App_Start/RouteConfig.cs
T
2015-12-02 11:53:15 -05:00

22 lines
517 B
C#

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