Page 1 of 1 [ 5 posts ] 

netsavy006
Snowy Owl
Snowy Owl

User avatar

Joined: 29 May 2006
Gender: Male
Posts: 138
Location: LI, NY, USA

23 Jun 2010, 3:31 pm

How can I make so that when someone visits my old blog (http://schizoaffectiveandy.blogspot.com/) it automatically takes them to my new blog (http://andyssurviving.net)?



StuartN
Veteran
Veteran

User avatar

Joined: 20 Jan 2010
Age: 60
Gender: Male
Posts: 1,569

23 Jun 2010, 3:51 pm

netsavy006 wrote:
How can I make so that when someone visits my old blog (http://schizoaffectiveandy.blogspot.com/) it automatically takes them to my new blog (http://andyssurviving.net)?


Use the HTML refresh meta tag within the <head> section of the old site, with 0 seconds time delay and with the new site URL:

<head>
...
<meta http-equiv="REFRESH" content="0;url=http://andyssurviving.net">
</head>



izmyaspieshowin
Butterfly
Butterfly

User avatar

Joined: 1 Apr 2010
Age: 42
Gender: Male
Posts: 13

23 Jun 2010, 3:59 pm

Yup, that is the best way, however, if that doesn't work (some sites and hosts it doesn't) I would write this in the code on your old homepage (the closer to the top the better):

<scr1pt type="text/javascript">
window.location.href='http://andyssurviving.net';
</scr1pt>

just replace the 1 in script tags with an i, since this board won't allow script tag.



netsavy006
Snowy Owl
Snowy Owl

User avatar

Joined: 29 May 2006
Gender: Male
Posts: 138
Location: LI, NY, USA

23 Jun 2010, 4:06 pm

It worked. Thanks...



MarijnR
Yellow-bellied Woodpecker
Yellow-bellied Woodpecker

Joined: 10 May 2010
Age: 54
Gender: Male
Posts: 65
Location: the Netherlands

25 Jun 2010, 5:38 pm

Even better would be to use one of the methods described here: http://www.webconfs.com/how-to-redirect-a-webpage.php

A so-called "301 redirect" tells visiting search engines that the site has permanently moved to another location, having search engines know this is a good thing ;-)