Blogger Redirect means Redirect a one Blog To Another Blog URL . The reasons could be anything like “Want to send visitors from one blog to another blog” or “Want to move a blog from blogger to any other custom domain”. Suppose you have two blogs on Blogger and move the blog from blogger to any another custom domain. Means You have good traffic in one blog and purchase .com domain and want to redirect your visitors to new .com domain.
The second reason – you can use Blogspot as a blogging platform but there are some many limitations in Blogger and you want to move your blog to self-hosted WordPress blog.
Read More - How to increase Blog Traffic
How to Redirect one blog to another Blog
There is three way to Redirect one Blog to another Blog
You can complete redirect Blogger blog to another URL. That is redirecting your homepage, Posts Page, and all other URL in your blog to another external website. The steps are given below.
- Login your Blogger Account.
- Go to a template in a left side and click Edit HTML.
- Now there is some code and press ctrl+f to find <head>.
- Now add the following code below the head tag.
<script type=’text/javascript’>
Var d=’<data:blog.url/>’;
d=d.replace(/.*/\ /[^\ /]*/, ‘ ‘);
location.href=’www.ibuildblog.com’;
</script>
- In the above code change the http://www.ibuildblog.com/ which is the destination URL. Now all your pages or post from the blog will be redirect to destination URL.
If you wish not to redirect the whole blog then you make use this code. The following code redirect user from particular page to another external website.
- Login your Blogger Account.
- Go to a template in a left side and click Edit HTML.
- Now there is some code and press ctrl+f to find <head>.
- Now add the following code below the head tag.
<script>
If (window.location.href==’yourblog.blogspot.com’)
{
Window.location=”http://www.ibuildblog.com/”;
}
</script>
The above code just redirects user from the specified blog to another website or URL.
The another way users who land on your blog will be automatically redirected to another blog after specific time period steps are given below.
- Login your Blogger Account.
- Go to a template on the left side and click Edit HTML.
- Now there is some code and press ctrl+f to find <head>.
- Now add the following code below the head tag.
<meta content =’5;url=http://www.ibuildblog.com/’http-equiv= ‘refresh’/>
This is the code 5 is the set time where the user will redirect to http://www.ibuildblog.com in 5 seconds after landing.
Author Desk – Hope this article to help Redirect one Blog to another Blog. If you have any problem then feel free contact us and also leave the comment in comment box.