Redirects

Managing redirection of domains and URLs within your sites and pages

Below are the various redirects you can add within the Site Builder:

Terminology used in this guide

  • domain/subdomain - this is the "hostname" part of the URL and is entered without the scheme ("http/https") and without a path after it (example: www.example.com)

  • path - this the part of the URL that is present after the domain and always starts with a slash (example: /some-path/)

Site Redirects

These redirects allow for you to redirect from other domains (i.e. somesubdomain.example.com) to the domain of the current Site. This type of redirect is great if you move an entire site from one domain to another as it will redirect all traffic to subpages to the Site's domain. It can also be used to create an "alias" from one domain to another.

You can manage these redirects from the Site Builder under "Site > Settings > Site Redirects"

Adding the redirect

  • Domain - Enter the full domain without http/https and without a path at the end (example: somesubdomain.example.com)

  • Status - You have two options on the "Status Code" to return on the redirect. Normally you will want to leave the status as 301

Example behavior

After this is completed, here are some examples of the behavior:

  • http://somesubdomain.example.com/ - would redirect to the home page/ on the Site

  • http://somesubdomain.example.com/any-page-url/ would redirect to /any-page-url/ on the Site

Page Redirects

These redirects allow you to redirect from one path within a Site to a specific page within the Site Builder. This type of redirect is typically used to redirect old or deleted page URLs to their new location. These are also preferred compared to "Full Path Redirects" because if you change the Path of the published page, then the old page redirects you have already setup will start redirecting to the new page automatically.

You can manage these redirects from the Site Builder by loading up the page you want to redirect to and then under "Page > Page Options > Page Redirects".

Adding the redirect

  • Redirect from - Enter the path (starting with a slash) you want to redirect from (example: /contact.php)

  • Status - You have two options on the "Status Code" to return on the redirect. Normally you will want to leave the status as 301

Example behavior

  • By entering /contact.php as the "from", visiting /contact.php would redirect to your page's current URL

Full Path Redirects

These redirects allow you to manually redirect any path within an existing Site to another path or external URL. In most cases it is recommended to use a Page Redirect if possible, but if not then use the Full Path Redirect. This is useful for creating redirects to URLs that do not have a dedicated page like Blog Posts or Product pages within a Site. These redirects can also be used to redirect paths within a Site to external URLs on other domains.

You can manage these redirects from the Site Builder under "Site > Settings > Full Path Redirects"

Adding the redirect

  • Redirect from - Enter the path you want to redirect when visited. Start the path with a slash (example: /contact.php)

  • Redirect to - Enter the path (starting with a slash) or enter a full URL (starting with https://) to the destination page you want to redirect to (example: /new-contact-page/)

  • Status - You have two options on the "Status Code" to return on the redirect. Normally you will want to leave the status as 301

Example behavior

  • By entering /contact.php as the "from" and /new-contact-page/ as the "to", visiting /contact.php would redirect to /new-contact-page/ under the Site

  • By entering /contact.php as the "from" and https://example.com/new-contact-page/ as the "to", visiting /contact.php inside the Site to would redirect to https://example.com/new-contact-page/ outside of the Site.

Last updated