Monday 3 April 2017

How To Redirect One Page To Another Page in Blogger

How To Fix 404 Error Not Found | How To Redirect New Page

Best encouragement provides complete guiding about how to redirect old page to new page in blogger because it is very useful to stop 404 errors on your old page that you want to delete or correct wrong URL. Why do you want to redirect your old page? Because it’s already been posted in my blog and to get more traffic to our posted blogs, we have to make some sort of way to redirect our old page to new page so that traffic will be increased as well as 404 errors will be reduced.
Everyone knows blogger does not provide 301 redirect option to compare other blogs (Ex: WordPress,Drupal, Joomla) Most of the content Management systems are independent to each other i.e. we can host it in anywhere we can take as entire backup file but blogger is fixed to one area we can’t and we can’t manage 301 redirected pages . I faced this type of problems because I have created one page in my blogger but it’s not working right now due some technical reasons. I want to help you people who end up at the old page through the search engines to be automatically redirected to the old posts on the new post. In this tutorial I am giving full pledge procedure how to solve and how to edit HTML part in a blogger. If you have more number of 404 error pages in your blogger we can easily redirect old page to your new page or home page.

How to Redirect:

1.   Login to your Blogger Dashboard
2. Go to Theme on left side dashboard. Click and Edit HTML.
3. Now You Can Add the following code on your blogger under head tag (<head> Syntax </head>)
Syntax:
<script>
var link=window.location.href;
var all404Links = [“404errorpageurl1”, “404errorpageurl2”,….];// 404 Error Page Url’s
for (i = 0; i &lt; all404Links.length; i++) //&lt;(it means ‘<’ symbol)
if(window.location.href==all404Links[i])
{
window.location=”Target Url”;//(Destination Url)
}
}
</script>


!*** Click Here Get More Information ***!


0 comments:

Post a Comment