How to Re-Direct to a Website From a Site in the Address Bar
if you have created an updated web page or you no longer want visitors to your site to see a certain page you have created, you can redirect visitors. This means that when a visitor types a specific address into a web browser, they will automatically be redirected fro the page they're trying to access to another that you program into the HTML of the page.
Instructions
-
-
1
Log in to your web server.
-
2
Open the HTML file associated with the page you want to redirect from.
-
-
3
Insert the following tag just before the closing </HEAD> tag at the top of your HTML page:
<meta http-equiv="REFRESH" content="0;URL=http://www.newwebpage.com">
-
4
Replace "newwebpage.com" with the actual URL of the page to which you want visitors redirected.
-
5
Publish your page.
-
1