How To Redirect Multiple Blogger URLs To Another Website Using Script

Do you want to redirect your blog post from one url to another url ? Do you want to redirect multiple blog page into single URLs? If you are looking to redirect your entire blog from one url to another url then your search is over.

You are at Right place....

Here i will share in details about how to redirect your post from one url to another url without loosing google rank.

How to Redirect multiple blogger URLs to single URLs?

Eg: if you want to redirect http://www.xyz.com/aa.html and http://www.xyz.com/bb.html to http://www.xyz.com/cc.html

then use below script and change the script as per your need to redirect url sucessfully.


   <script>

var URLlist = [

"http://www.xyz.com/aa.html",

"http://www.xyz.com/bb.html"

];

     if(URLlist.indexOf(window.location.href) !== -1)   

     window.location = "http://www.xyz.com/cc.html"}

</script>