Al of us developers learn from experience, especially when we come through a phase of escalations.

A team had the following problem early in the morning and I was dragged into helping them.

Now the problem was, they emailed a different site that they wanted to demo to the users and you need to have a quick approach in 2 minutes.

What will you do?

Q. Contact the support team?

Q. Open the server and do some configuration?

Now what?

Send the uses another email informing them we have wrongly configured the URL, please take this as a new URL. It will look bad, that was the main concern of the team. They did not want to do that.

So what did we do?

In these scenarios, first calm down please.

Secondly, here is an option.

Code
  1. <script '"text/javascript"'></script>
  2. <meta http-equiv="refresh" content="0;url=http://newhome/">
Just change the URL of the site and set the value of content to be 0, it will take 0 for the time to redirect to a new site.
Cheers.