How to Change url of Pages in Blogspot
How to change url of pages in blogspot because I donot see any option but on post I can see.
On Blogspot (Blogger), you cannot manually change the URL (permalink) of pages — this option is only available for posts.
Why?
-
Blogspot treats pages (like "About", "Contact", etc.) differently from posts.
-
Pages get automatic URLs based on their title, and Blogspot does not provide a manual permalink option for them.
Workarounds to Control or Customize Page URLs
✅ Option 1: Use a post instead of a page
-
Posts let you set a custom permalink.
-
You can create a post and use it like a page (e.g., for an "About Me" or "Terms" page).
-
Then, add that post to your menu or navigation manually.
✅ Option 2: Redirect the page URL using JavaScript or meta tag
If you created a page but want it to point to another custom URL (like a post with a better URL), you can add a redirect:
Step-by-step:
-
Go to Pages > Edit the page you want to redirect.
-
Switch to HTML view.
-
Paste the following code:
<meta http-equiv="refresh" content="0; url=https://your-new-url.com">
Or, using JavaScript:
<script>
window.location.href = "https://your-new-url.com";
</script>
-
Save the page.
Now, when someone visits that page, it will immediately redirect to the URL you specify.
Additional Tip:
You can hide the original page from menus if you're just using it to redirect.
Summary:
-
Posts: Can edit the URL (use "Custom Permalink" when publishing).
-
Pages: URL is auto-generated from the title — no manual control.
-
Solution: Use posts as pages, or add redirect code in the page’s HTML.
Comments
Post a Comment