Redirect blog post of one blog to another blog post
<script>
// This will have a similar behavior as an HTTP redirect
window.location.replace("https://wikiseoblogging.blogspot.com/2020/05/best-google-adsense-alternatives-in-2020.html");
</script>
Redirect to home page or particular post fast to home page
<script>
if(window.location.href == 'Page URL')
{
window.location="https://wikiseoblogging.blogspot.com";
}
</script>