PortalAliasController provides method to manage portal alias.

Namespace: DotNetNuke.Entities.Portals
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public class PortalAliasController : ServiceLocator<IPortalAliasController, PortalAliasController>, 
	IPortalAliasController
Visual Basic
Public Class PortalAliasController
	Inherits ServiceLocator(Of IPortalAliasController, PortalAliasController)
	Implements IPortalAliasController

Remarks

For DotNetNuke to know what site a request should load, it uses a system of portal aliases. When a request is recieved by DotNetNuke from IIS, it extracts the domain name portion and does a comparison against the list of portal aliases and then redirects to the relevant portal to load the approriate page.

Inheritance Hierarchy

System..::..Object
  DotNetNuke.Framework..::..ServiceLocator<(Of <(<'IPortalAliasController, PortalAliasController>)>)>
    DotNetNuke.Entities.Portals..::..PortalAliasController

See Also