Alias Domain Authentication

In order to allow website visitors to login to user accounts on mapped subdomains of your website, you can simply enable the checkbox for Alias Domain Authentication:
Image without caption
This will allow users to login to Alias Domains of your website and remain only logged in to that Alias Domain. They are only able to access protected login pages that are mapped to the specified alias.

Selective Alias Domain Authentication

The dropdown checkbox allows you to selectively activate Alias Domain Authentication only on specific alias domains:
Image without caption

Multisite Requirements

If you are trying to configure Alias Domain Authentication on multisite, you must update the sunrise.php file mentioned in our multisite integration docs to change this string from this:
plain text
if ( ! is_multisite() || $is_admin ) { return $site; }
To this:
plain text
if ( ! is_multisite() || ! $is_admin ) { return $site; }