Website SEO Design Development Freelance Edmonton | Meta Tag Redirect |
| |
Redirection is often required if a webpage gets updated and the filename changes. Rather than lose any traffic that has bookmarked that page and to ensure that all internet references to the old page result in 404, this META tag can preserve the traffic flow until all references have been adjusted. This tool will generate code that, when placed in the head section of a webpage, will redirect the website visitor to any page desired. This is especially useful when access to the account server is not possible. |
| This redirect generator produces a script with a time delay feature. Paste the code between the webpage head tags |
| |
|
| In addition to the time delay redirect generator the following two META tag scripts can be used as stand alone tags so the visitors are notified of the redirect. |
| |
|
| |
| Alert redirect notifies the visitor of webpage location change before the redirect occurs. Paste the code between the webpage head tags |
<script>
alert("This page has been moved to a new location... click OK to be redirected.");
location = "http://inthelink.ca/index.htm";
</script> |
| |
|
| |
Confirm Redirect notifies the visitor of the webpage location change with a confirmation button and offers the choice of accepting or not. Paste the code between the webpage head tags
This one is the preferred method as it's up to the visitor whether to follow through to the new webpage. |
<script>
if(confirm("This page has been moved to a new location... would you like to be redirected"))
{
location = "http://inthelink.ca/index.htm";
}
else
{
history.back();
}
</script> |
| |