Frequently Asked Questions
How to setup a multi domain start page
2min
the following code example can be added to a page template and applied to the home/start page of a site to load a different start page for different domains added to the site this method does however remove some of the ease of editing for the client, as they will not be able to use visual editor to manage the pages that are setup this way we'll look at adding a smoother point and click version to admin later one use case for this approach would be where a client has a small chain of businesses that each have their own domain to target the area closest to them each of the sites are very small and the website structure is reasonably similar, and so it makes sense for the client to be able to manage all of them from the same admin {% assign domain = context location host %} {% case domain %} {% when 'www domainone com' or 'domainone com' %} {% content for siteglide head scripts %} home domain one {% endcontent for %} {% include 'content section', id '17', name 'domain one page' %} {% when 'www domaintwo com' or 'domaintwo com' %} {% content for siteglide head scripts %} home domain two {% endcontent for %} {% include 'content section', id '15', name 'domain two page' %} {% else %} {% content for siteglide head scripts %} home other domain {% endcontent for %} {% include 'content section', id '16', name 'other domain page' %} {% endcase %} i'll now explain the code snippet above and how it works on the first line we get the current domain ( context location host ) when the page loads and assign it so that it has a name of domain next, we open a case to check the result of domain for each of the alternate domains we would like to check for, we create a when within the case we include two versions of the domain to catch the majority of users one that includes the www and another that does not inside each when we call in a content section that should contain all of the page content we also define an seo page title to match our page and wrap that in siteglide head scripts to automatically move it to the head on page load (check out this document to find out more siteglide scripts ) we then add an else at the end of the case to cover the default domain e g "if neither of these alternate domains are used, then do this" which acts somewhat like a catch all finally, we close the case using the above example, visitors will see unique page content to each domain when they visit when they click on links on the page, they will continue to other pages on the site while keeping the same domain unless you hard code a full domain url on a link please note that by adding more than one domain to a site, technically all content is accessible via all domains though you can effectively make content hidden from domains by not adding it to pages, it could still be accessed