Override the default page route handling

Overview

By default Sitefinity uses a single route - FrontendRoute to serve all of its frontend pages. The page is resolved by parsing the URL segments from the request and finding the page in the hierarchy that matches the specified UrlName.

If you want to modify the behavior of how those URLs are resolved and what they resolve to, you can extend the SitefinityRoute class and implement your custom logic there.

NOTE: If you want a specific URL to be resolved to something else, we recommend using the URL rewrite module or just basic HTTP redirects. The following example is for advanced purposes where the these methods are not applicable.

Procedure

Perform the following:

  1. In Visual Studio create a new class named CustomSitefinityRoute that inherits from Telerik.Sitefinity.Web.SitefinityRoute.
  2. Implement your custom logic for resolving the current page that will process the request.
  3. Register the CustomSitefinityRoute object with Sitefinity by using the ObjectFactory class.

Following are two example implementations for the SitefinityRoute class:

  • The first example demonstrates how to serve other pages instead of the requested ones.
  • The second example demonstrates how you can replace the URL to serve a page from the file system and not a Sitefinity based one.

Increase your Sitefinity skills by signing up for our free trainings. Get Sitefinity-certified at Progress Education Community to boost your credentials.

Web Security for Sitefinity Administrators

The free standalone Web Security lesson teaches administrators how to protect your websites and Sitefinity instance from external threats. Learn to configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.

Foundations of Sitefinity ASP.NET Core Development

The free on-demand video course teaches developers how to use Sitefinity .NET Core and leverage its decoupled architecture and new way of coding against the platform.

Was this article helpful?