i want to redirect visitors from my old website url to a new url coz my website has been moved. how i can do it using html code??
how to redirect a webpage to another webpage using html code??
Collapse
X
-
Tags: None
-
-
The only two ways to do it is with a link inserted into your home page to your new site or with "redirect" on your server.Comment
-
Originally posted by drhowarddrfineThe only two ways to do it is with a link inserted into your home page to your new site or with "redirect" on your server.Comment
-
-
Originally posted by arunkumar2006i want to redirect visitors from my old website url to a new url coz my website has been moved. how i can do it using html code??
add this tag in<head>.
and how much time you want to redirect with another page edit in "content" part, it's in second.Comment
-
-
Javascript Time Delay
Code:<html> <head> <script type="text/javascript"> <!-- function delayer(){ window.location = "../javascriptredirect.php" } //--> </script> </head> <body onLoad="setTimeout('delayer()', 5000)"> <h2 >Prepare to be redirected!</h2> <p>This page is a time delay redirect, please update your bookmarks to our new location!</p> </body> </html>
Comment
Comment