-->

How To Redirect Your Blogger Site To Another Website Site Using Meta Code

- January 25, 2019
ads1
ads2
On This Tutorial we will share 3 different codes that automatically redirect Your  Blogger blog to another blog or URL and each code does different tasks respectively.

 You have to use this if you just moved to new domain. To do this you are going to make changes to your template file. So before you mess up with the codes it’s recommended that you backup your template first it's important.


  1. Login to your Blogger dashboard
  2. Go to template and click edit HTML
  3. Now you can see template codes. Press CTRL + f and then find <head>
  4. Now add the following code below head tag like you see in the image below.





<script type='text/javascript'>
var d='<data:blog.url/>';
d=d.replace(/.*\/\/[^\/]*/, '');
location.href = 'https://fast.net.ng/';
</script>
In the above code you have to  change https://fast.net.ng/ which is the destination URL. Now all your pages from the blog will be redirected to destination URL.

Now we will see another piece of code that redirects particular blog URL to another blog or website. If you wish not to redirect the whole blog then you have to make use of this code. Also you can use this for redirecting user from a particular page to another external website for promotional purpose.

To do this just paste the following code below head tag and change the from URL that is http://yourblog.blogspot.com and destination URL that is https://fast.net.ng/
<script>
if(window.location.href == 'http://yourblog.blogspot.com ')
{
window.location="https://fast.net.ng/";
}
</script>
The code above  just redirects user from the specified BlogSpot URL to another website or URL.

So Here comes another code; with this you can redirect all your blog pages including home page to another blog or website with specific set time. So users who lands in your blog will be automatically redirected to anther blog after a specific time period.

<meta content='5;url=https://fast.net.ng/' http-equiv='refresh'/>
This is the code, just copy and paste below the head tag in your template file. In the above code 5 is the set time where users will redirected to https://fast.net.ng/ in 5 seconds after landing.

Hope the article guided you on how to automatically redirect Blogger blog to another blog / website or URL. Share this and if you found it useful then please leave your comments. To get more update from Blog Time Now subscribe to our RSS feeds.


Google Advertisement ads3


EmoticonEmoticon

 

Start typing and press Enter to search