Blogger Redirect is redirecting or diverting a Blogger blog (Blogspot) to another blog. For example, the blog aaaa.blogspot.com redirects t...
Blogger Redirect is redirecting or diverting a Blogger blog (Blogspot) to another blog. For example, the blog aaaa.blogspot.com redirects to bbbb.blogspot.com. You can use this method to TLD also.
Here's how to automatically redirect your blog to another blog or website.
Directing a blog to another blog page is usually done when creating a new blog, and moving all the contents of the old blog to the new blog. With a redirect, all posts are also open in the new blog.
[ Video https://mixdrop.co/f/0voogkjgaz9xew ]
Redirect one Blog to Another Blog
To redirect blogspot (or TLD that developed with blogger) to another blog, we have 3 options. Basicly, all of them use javascript command.
We will see 3 of them here. You can use one of them.
|Method 1
For this method you put some meta code to HTML template. Do it by following this step.
- Go to your blogger dashboard
- Find theme then choose Edit HTML.
- Put the code after <head> tag.
- Save the template.
Here is the code
[ <meta content='2;url=https://yoursdestinationblog.blogspot. com/' http-equiv='refresh'/> ]
With this code, first blog with 2 seconds before redirected to new blog that you want. You can change number '2' with time that you like. Put '0' if you do not want to show first blog.
[post_ads]
|Method 2
You can do another method with same step with first one. The difference is the code that you put.
Put the code after <head> tag,
the code is
[<script type='text/javascript'>var d='<data:blog.url/>';d=d.replace(/.*\/\/[^\/]*/, '');location.href = 'https://www.destinationurl.com/';</script>]
All page/posts from origin url will be directed to Home page in new site.
If you want to redirect to the same page/posts, do third method.
[post_ads_2]
|Method 3
As we told you before, with this method you can reach the page (post) same as originial and destination web. In simple way, just use this code.
[<script type='text/javascript'>var d='<data:blog.url/>';d=d.replace(/.*\/\/[^\/]*/, '');location.href = 'https://www.destinationurl. com'+d;</script> ]
So, we recommend you using third method. Its only caused all your old page will be directed to a new page. No traffic to loose. Your visitor(s) do not spend their time in 404 page.
COMMENTS