How to Redirect to a Rewritten URL
If you move your website or want to redirect a Web page to a different location, you use the "meta refresh" HTML tag to redirect to the rewritten URL. The meta tag can be added to any HTML page. It redirects Web browsers and search engine bots to the new page, so you can send readers and search engines to the new page content.
Instructions
-
-
1
Right-click the HTML file you want to redirect. Select "Open With" to list any HTML editors you have on the computer. Double-click the editor you want to use to create the redirect.
-
2
Scroll down the page to the location of the opening <head> and closing </head> tags. You must place the redirect within these two tags.
-
-
3
Type the following code between your head tags:
<meta HTTP-EQUIV="REFRESH" content="0; URL=http://www.domain.com/page.html">
Replace the URL property value with your own website domain and page names. You can redirect to a page in the same domain or one in another external domain.
-
4
Press the "Ctrl" and "S" keys to save your HTML code changes. Open the page in a Web browser to test the redirect. When you open the page, the browser automatically redirects to the URL in the meta refresh code.
-
1