How to Redirect Single Blogger Post to External URL

Here is the simplest way to redirect an old blogger post to new URL using Javascript. Step 1) Login Blogger.com then go to the blog post and Edit it. Step 2) Switch to “HTML” mode by clicking on Tab Above besides “Compose“. Step 3) Now go to the bottom of your code the paste following…

By.

min read

Here is the simplest way to redirect an old blogger post to new URL using Javascript.

Step 1) Login Blogger.com then go to the blog post and Edit it.

Step 2) Switch to “HTML” mode by clicking on Tab Above besides “Compose“.

Step 3) Now go to the bottom of your code the paste following code to redirect to the desired URL.

<script>

window.location = "http://www.example.com/your-new-url-to-redirect-when-this-post-loads";

</script>

 

Then click on Update… It’s Done …

8 responses to “How to Redirect Single Blogger Post to External URL”

  1. Uva Avatar
    Uva

    Thank you very much

Leave a Reply

Your email address will not be published. Required fields are marked *