This blogger's guide discusses about Redirect Blog URLs to Several Other Sites
which is usually used by site owners to promote their websites or blogs through popup and popunder advertisements.
Usually you find these types of advertisements on pirated software or movie download sites with very annoying advertisement features. According to some SEO experts, promoting a site using this method can have a negative impact on the site. We will not know from where the source of the traffic is, whether from spam sites, or from dangerous sites.
Redirecting a site's URL to another site might be a solution used by site owners who want to promote their site through this type of advertising without having a dangerous impact on the main site. Usually the site owner will create a special site that is used to automatically redirect or redirect to the main site. That way, the main site will not get a negative impact.
Redirecting site links or also called 301 redirects is generally used by site owners to redirect the old site url to the new site url address. That way they won't lose visitors if they use the new site address.
Blogger> Select the Theme menu, then click the Edit HTML button> Then add the code below after the <body> code or before the </body> code
The code above serves to redirect the Blog URL to several other sites at random. If you only want to redirect to one site, then you can follow the steps below.
Still on the Blogger page, click the Themes menu, then select Edit HTML. Please copy the code below and place it after the <head> code, then save it.
Thus the discussion about hopefully useful, if there are things you want to ask, please ask through the comments below, don't forget to visit other blogger tutorials on this site.
which is usually used by site owners to promote their websites or blogs through popup and popunder advertisements.
Usually you find these types of advertisements on pirated software or movie download sites with very annoying advertisement features. According to some SEO experts, promoting a site using this method can have a negative impact on the site. We will not know from where the source of the traffic is, whether from spam sites, or from dangerous sites.
Redirecting a site's URL to another site might be a solution used by site owners who want to promote their site through this type of advertising without having a dangerous impact on the main site. Usually the site owner will create a special site that is used to automatically redirect or redirect to the main site. That way, the main site will not get a negative impact.
Redirecting site links or also called 301 redirects is generally used by site owners to redirect the old site url to the new site url address. That way they won't lose visitors if they use the new site address.
How to Redirect Blog URLs to Several Other Sites
Please open the pageBlogger> Select the Theme menu, then click the Edit HTML button> Then add the code below after the <body> code or before the </body> code
<script type='text/javascript'>
//<![CDATA[
(function(){
setInterval(function(){
var redSites = [
"https://situs_new1.blogspot.com",
"https://situs_new2.blogspot.com",
"https://situs_new3.blogspot.com",
"https://situs_new4.blogspot.com",
"https://situs_new5.blogspot.com"
];
var randomLinks = redSites[Math.floor(Math.random()*redSites.length)];
window.location = randomLinks
},9000)
}())
//]]>
Please change the blogspot site address above by using the new site address that you want to use as the destination address.//<![CDATA[
(function(){
setInterval(function(){
var redSites = [
"https://situs_new1.blogspot.com",
"https://situs_new2.blogspot.com",
"https://situs_new3.blogspot.com",
"https://situs_new4.blogspot.com",
"https://situs_new5.blogspot.com"
];
var randomLinks = redSites[Math.floor(Math.random()*redSites.length)];
window.location = randomLinks
},9000)
}())
//]]>
</script>The code above serves to redirect the Blog URL to several other sites at random. If you only want to redirect to one site, then you can follow the steps below.
Related article :
How to Switch the Old Blog URL to a New Blog
Here's how to redirect or redirect an old blog url to a new blog. There are 2 ways you can use, namely using the help of javascript code and refresh meta tags.Still on the Blogger page, click the Themes menu, then select Edit HTML. Please copy the code below and place it after the <head> code, then save it.
<script type='text/javascript'>
var d='<data:blog.url/>';
d=d.replace(/.*\/\/[^\/]*/, '');
location.href = 'http://seosuneo.blogspot.com';
</script>
var d='<data:blog.url/>';
d=d.replace(/.*\/\/[^\/]*/, '');
location.href = 'http://seosuneo.blogspot.com';
</script>
To use the refresh meta tag, please add the code below.
<meta content='5;url=http://seosuneo.blogspot.com' http-equiv='refresh'/>
Thus the discussion about hopefully useful, if there are things you want to ask, please ask through the comments below, don't forget to visit other blogger tutorials on this site.
Report