k.y.z.o
01/01/2024, 2:56 PMD_Inventor
01/02/2024, 7:01 AMD_Inventor
01/02/2024, 7:04 AMcsharp
// Business rule: homepages are only visited through internal redirects
// (read: only accessed through the root node)
if (!UmbracoContext.PublishedRequest!.IsInternalRedirect)
{
// current page should never be null, nor should its root ever be null,
// so we ignore that on purpose.
return RedirectPermanent(CurrentPage!.Root()!.Url());
}
SiempreSteve
01/02/2024, 7:20 AMD_Inventor
01/02/2024, 7:30 AMD_Inventor
01/02/2024, 7:32 AMkdx-perbol
01/02/2024, 1:48 PMSiempreSteve
01/02/2024, 3:54 PMNik
01/02/2024, 4:26 PMkdx-perbol
01/02/2024, 7:57 PM