Redirect Blogger 404 Error (Page Not Found) To Homepage

A 404 error page tells you and search engines that a page is not found by displaying a text similar to it "Sorry, the page you were looking for in this blog does not exist.". This may happen because you have changed your URLs over time, either removed a few pages when you overhauled your design or a visitor may have accidentally misspelled an URL inexistent in your blog, so it automatically redirects to the 404 error page (page not found).
how to redirect blogger 404 error to homepage
And probably this will not make a good impression on the greatest potential users of our blog. Before the user clicks the back button or close the window/browser's tab, thus leaving our site forever, we may want to redirect 404 error in Blogger to a page, where are chances that the visitor will continue reading our blog.
One of the most used methods is the "meta refresh" but the problem with this method is that it breaks navigation (doesn't allow to return back). In this case, the best method is by using Javascript about which I will go in detail below.

Redirect Blogger 404 Error with Javascript


Go to your Blogger dashboard, select your blog and then to Settings > Search preferences > Custom Page Not Found.

redirect 404 error page in blogger to homepage

Copy and paste the following code inside the empty box:
Sorry, the page you're looking for in this blog does not exist.
You will be redirected to homepage shortly.
<script type = "text/javascript">
BSPNF_redirect = setTimeout(function() {
location.pathname= "/"
}, 5000);
</script>
The message which is going to be displayed can be modified as you want. If you are willing to redirect your blog 404 error page to another page other than your home page, just replace pathname to href and / with the url of your page. And finally, the number 5000 which is the delay expressed in milliseconds, can be changed to other value if this is more convenient.

Next thing to do is to Save all changes made in this section and do a little test to check if the code works well. You can verify the 404 error page functionality by adding a custom text at the end of your blog address and after hitting Enter, you should see the error page followed by a redirection after 5 seconds. That's it!

Comments/disqusion
15 comments

  1. says:

    nice one!

  2. says:

    Really Helpful! Tnx!

  3. says:

    Thanks so much . i have one error with blogger .,but now i fixed them with that html javascript .
    Thanks :)

  4. says:

    Thank you! This is exactly what I needed after I deleted a bunch of old posts.

  5. says:

    Good post! :)

  6. says:

    thanks i am learning alot

  7. says:

    Actually i need this but i need other way. Someone???????

  8. says:

    I had apply, Thanks so much ^^

  9. says:

    Thank you so much! This was super helpful! :D

  10. says:

    thanks for this one. i used it in my blog
    Http://dystopianhub.blogspot.com

  11. says:

    Hello, can anyone help me? I have a custom 404 error page and I put it where this tutorial shows.

    But when I try to test it by adding something that doesn't exist after my domain, all I get is my page with the sidebar and all, but with no posts showing.

    What am I doing wrong?

  12. says:

    Thank u very much

  13. says:

    Thank for sharing. Please I have a similar problem in my blog which this doesn't solve. The problem is that when my site address was put in the address bar without the "WWW", The result will be:

    "404. That’s an error.

    The requested URL / was not found on this server. That’s all we know."

    It started since I have changed the domain name from the default blogspot.com.
    I will be happy if you or anybody else can help me get rid of it.
    Thanks and Happy blogging.

  14. says:

    Thank you! It was helpful for me.

  15. says:

    thanks a lot working 100%