Skip to content

Instantly share code, notes, and snippets.

@micklaw
Created May 3, 2015 14:41
Show Gist options
  • Save micklaw/fb6dbdd50510a659025e to your computer and use it in GitHub Desktop.
Save micklaw/fb6dbdd50510a659025e to your computer and use it in GitHub Desktop.
Umbraco route startup
public static void RegisterRoutes(RouteCollection routes)
{
var umbraco = new Route("{*url}", new RouteValueDictionary() { }, new RouteValueDictionary() { { "url", new YomegoCMSRouteConstraint() } }, new YomegoCMSRouteHandler());
routes.Add(umbraco);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment