|
Redirect linksIf you have moved your page and would like the previous page to jump to the new page automatically without the user clicking on anything, you can use a redirect link. A redirect link is basically a link that will redirect your visitor to another page indicated on the page with the following code:
<meta http-equiv="refresh" content="0;url=URL">
The tag above would be place in between the <head> and </head> tags. If you want your visitors to be redirected without any wait, then you would leave the content=" as zero. Otherwise, you would change it to whatever time best suites you. Content=" is basically the wait time. ***NOTE*** do not change anything else in the code other than the 0 and URL. the content="0;url=URL" may not look right, but if you do change or delete something, something will go wrong, it's meant to be attached like that (bolded part). |