If you need to redirect a web site, just put the following html in place of the page you want to redirect:
<head> <script type="text/javascript"> <!-- setTimeout('Redirect()',2000); function Redirect() { location.href='http://newdomain.com/'; } //--> </script> <html> <body> This site is no longer located here. <br /> You will be redirected in 2 seconds. Please update your bookmarks/links </body> </html> |