GuidePedia

0
How to send visitors to a new blog link after change your old blog link 2014

Hello to you today the subject of how to convert special visitor from the old blog to your new blog a very simple way

  • Go to blogger dashboard .
  • Click On "Edit HTML" To edit your template.
  • Now using Ctrl+F find below code :
</head>
  • Now Paste below code Before-Above it :
<script>
// Redirect to new link by MyNetTricks Prog @ http://mynettricks.blogspot.com/2014/04/
var oldsite = "Your Old Site Here";
var newsite = "Your New Site Here";
var link = location; 
var links = link.toString();
var lin = links.indexOf(oldsite);
if (lin > -1){
var links = links.replace(oldsite,newsite);
  window.location.assign(links);
}else {
alert("This link does not match the current link to this  site.");
}
</script>
  • Now to finish change Your Old Site Here to your old site link and Your New Site Here to your new site link.

Post a Comment

 
Top