How to Redirect Blog URL to Several Other Sites
How to Redirect Blog URL to Several Other Sites - This method of working from the Redirect Blog URL to Several Other Sites is actually almost the same as the Way to Redirect Page Not Found to Other Pages I've shared before. But there is a difference, that is, you can add several site links and will automatically switch to sites that have been determined randomly.
So by Redirecting the Blog URL to some of these other sites, it is perfect for those of you who want to create a new site but don't want to lose visitors from old sites.
Then how? The method is quite easy, just follow the steps below.
Open the Blogger page >> Click the Themes menu and click the Edit HTML button >> Add the following code before </body>
After editing click the Save theme button and see the results on your blog.
So is the tutorial that I can share this time about tips on How to Redirect Blog URL to Several Other Sites. Hopefully useful and good luck.
So by Redirecting the Blog URL to some of these other sites, it is perfect for those of you who want to create a new site but don't want to lose visitors from old sites.
Then how? The method is quite easy, just follow the steps below.
How to Redirect Blog URL to Several Other Sites
Open the Blogger page >> Click the Themes menu and click the Edit HTML button >> Add the following code before </body>
<script type='text/javascript'>
//<![CDATA[
(function(){
setInterval(function(){
var redSites = [
"https://new-site1.blogspot.com",
"https://new-site2.blogspot.com",
"https://new-site3.blogspot.com",
"https://new-site4.blogspot.com",
"https://new-site5.blogspot.com"
];
var randomLinks = redSites[Math.floor(Math.random()*redSites.length)];
window.location = randomLinks
},9000)
}())
//]]>
</script>
Pay attention to the marked code, change the URL of the site with your site. You can also reduce or add the site URL in the code as needed and for the number 9000 (9 seconds) shows the time taken when switching to another site.
After editing click the Save theme button and see the results on your blog.
So is the tutorial that I can share this time about tips on How to Redirect Blog URL to Several Other Sites. Hopefully useful and good luck.
Post a Comment for "How to Redirect Blog URL to Several Other Sites"
Provide comments relevant to the posted articles and provide critiques and suggestions for the progress of the blog