Logo

What are you looking for?

Get help straight from our team...

Redirect a domain to a specific page of a site

HTML Snippets

Redirect a domain to a specific page of a site

Last updated on 14 Jul, 2020

Place this snippet on the HOME page in order to get a domain (which is already pointed to the system, and already entered in Site Properties) to open a specific page of a site.

<script>
   if (document.location.href.indexOf('DOMAINNAMEHERE.com') > 0) 
      document.location.href = "http://DOMAINNAMEHERE.com/PAGE.html"; 
</script> 

*Replace DOMAINNAMEHERE.com with the real domain.


NOTE: This snippet is provided as is, with no express or implied warranty for accuracy or accessibility.

Did you find this article helpful?
Previous

Hide Site Title

Next