When pages indexed in Google
SERP, then the page is deleted. People who go to the page will see a message
Page Not Found, most people will close the page not found it, so that the
person is interested, we should just redirect the page not found page to other,
more interesting.
How to Redirect Page Not
Found Blogger to Another Page
Go directly to the tutorial
yes. First, copy the following code.
<script type =
"text/javascript">
yukita_redirect =
setTimeout(function() {
window.location.href =
'http://YOUR-URLPAGE';
}, 10);
</script>
“ Change “ YOR-URLPAGE accordance with the url of the page you
want, for instance I want to redirect the page not found page to contact the
blog, then the code so like this
<script type =
"text/javascript">
yukita_redirect=
setTimeout(function() {
window.location.href = 'http://yourhomepageURL/p/contact.html';
}, 10);
</script>
After that, go to blogger >
search preferences > message on the page is not found> edit,
then paste the code in it and save your changes.
Try searching for a
non-existent page on your blog, if successful then as soon as the page not
found appears, the browser will open the page in the above settings.
May be useful.