There are a number of applications and options for setting up page redirects. When a redirect at the DNS or CMS level is not possible, embedding a simple JavaScript redirect will do the trick. The example below does the following things:

  • Automatically executes when the page loads.
  • Changes the URL to a new URL, so when someone presses the Back button in their browser, they return to the previous page. Not the page with the redirect, which would send them in a loop.

<script>
window.onload = function() {
  location.replace("https://tackle.consulting");
}
</script>