Custom Routing
Learn everything you need to know about custom routing in Umbraco CMS.
Customizing the inbound pipeline
IContentFinder
Last Chance IContentFinder
using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.DependencyInjection;
using Umbraco.Extensions;
namespace My.Website;
public class UpdateContentFindersComposer : IComposer
{
public void Compose(IUmbracoBuilder builder)
{
//set the last chance content finder
builder.SetContentLastChanceFinder<My404ContentFinder>();
}
}Custom MVC routes
RoutingRequestNotification
Related articles
Last updated
Was this helpful?