Tuesday, September 30, 2014

How to automatically Redirect Blogger Blog(blogspot) to another blog or Domain


We may have created lots of blog and some of them are now popular with good traffics, Now we want to merge both blogspot sites to get double traffics from both blogs, at that time we have to take a 302 Redirection.

When this to use:-


  • This will be useful when you have added the custom domain with new platform like Wordpress.

  • This will be very useful when you have the broken links and 404 pages.

  • This will be useful when you have many popular blogs with good traffics, now you want to migrate all of those blog.
There are 2 kinds of 302 Redirection,  Redirection of Specific Pages, Redirection of Whole Blog, and Redirection in a specific time.

How to redirect automatically blog or blog's pages to another blog or domain?

Go to Blogger Dashboard >> Template >> Edit HTML.
Now search ( Ctrl+f) for </head> tag.

If you want to redirect whole blog copy the below code just above the </head> tag.


1
<script type='text/javascript'>
2
  var d='<data:blog.url/>';

3
  d=d.replace(/.*\/\/[^\/]*/, '');
4
  location.href = 'http://startingphaseofc.blogspot.com';

5
</script>

change http://startingphaseofc.blogspot.com  with your own URL, Then save the template and you are done.

If you want to redirect Specific Page copy the below code just above </head> tag.

1
<script>

2
if(window.location.href == 'http://yourblog.blogspot.com/pages')

3
{

4
window.location="http://startingphaseofc.blogspot.com";

5
}

6
</script>

Remember, Change http://yourblog.blogspot.com/pages with your source URL and http://startingphaseofc.blogspot.com with your Destination URL. then save the template and you are done.

If you want to redirect your blog to another blog or domain in specific time, copy the below code just above the </head> tag.

1
<meta content='5;url=http://startingphaseofc.blogspot.com' http-equiv='refresh'/>

Now remember  http://startingphaseofc.blogspot.com with your Destination URL then save the tempalte and you are done.

If you find this article helpful, Please Response............

1 comment:

  1. To achieve the best WordPress SEO possible you might want to install some of these but at the outset it is important to concentrate on producing good content. https://websiteusingwp.com When SEO is combined with WordPress, you will be absolutely amazed by the results.

    ReplyDelete