Say someone goes to my website, how can i redirect them to a different site? like say my site is under construction, so i want to point it to a back up?
Printable View
Say someone goes to my website, how can i redirect them to a different site? like say my site is under construction, so i want to point it to a back up?
This will also break out of any frames that are active as well:
Code:<SCRIPT language="Javascript">
window.parent.parent.location.href='http://www.wherever.com';
</SCRIPT>
This will also work:
Code:<META Http-equiv="refresh" Content="3; Url=http://forums.vb-world.net">