How to redirect blog from blogspot to .com
I
have created my blog in blogspot
which is the best place for beginners before some years. Now i have decided to create my own blog with my domain name. Here, one biggest challenge is how to redirect traffic of my blogspot blog to my own blog which is hosted in my own domain. Many of you bloggers faced same situation.
You can do it with one line of snippet. Follow below steps to enter redirection code.
Step-1
Go to blogger and login with login credentials.
Step-2
Click on “Template” from left side menu.
Step-3
Here you can see blog preview. Click on “Edit HTML”. In blog html paste below code in <head>
tag and click on “Save template”.
Let have a look at below code.
1
|
<meta content='2;url=http://sgeek.org/' http-equiv='refresh'/>
|
It will redirect blog after 2 seconds of delay. Replace sgeek.org with your url and set delay in content. That’s it your job is done it your visitors will now redirects to you new self hosted host. JavaScript
also helps to redirect page.
1
2
3
|
<script type="text/javascript">
window.location="http://sgeek.org";
</script>
|
Put above JavaScript
code at bottom of you page in <body>
tag.
Babsido
Hi.
May I ask you a question?
I have a blogger blog that I would like to move to my new domains blog page, meaning, Mysite.com/blog how do I do this without losing SEO ranking?
Thanks