Welcome To Our Blog When a page has been indexed in Google's SERP, then the page is deleted. People who go to that page will see a "Page Not Found" message, all most people will close this page not found so that people are interested, it's better if we just redirect the page not found page to another more interesting page or home page.
How to Redirect Blogger Page Not Found to Another Page?
Let's go straight to the tutorial without wasting time. First, Copy the following code carefully.
<script type = "text/javascript"> yukita_redirect = setTimeout(function() { window.location.href = 'http://URLPAGEANDA'; }, 10); </script>
Change "YOUR URLPAGE" according to the URL of the page you want, for example, I want to redirect a page not found to the blog's contact page, then the code looks like this bellow
<script type = "text/javascript">
yukita_redirect = setTimeout(function() {
window.location.href = 'https://droidnur123.blogspot.com/p/disclaimer.html';
}, 10);
</script>
After that, go to blogger Dashboard > Next Scroll Down > Custom 404 > edit, then paste the code in it then save changes.
Try searching for a page that is not on your blog type /404 after your blog URL, if successful, as soon as the page not found page appears, the browser will open the page in the settings above.