Skip to main content

How To Create Search Engine Friendly URLs For Blogger Posts



One of the biggest signals that search engines use to characterize your blog post is it's URL. So it's very important from an SEO standpoint that your post's URL captures the full information of what your blog post is about. Unfortunately, Blogger only takes the first 40 characters of your post's title as the default Permalink to your post. Not to worry, this post will show you how to create optimized URLs to your blog post.

What Are Permalinks?

A permalink (short for permanent link), is a URL that points to a specific web page on your blog, which has passed from the front page to the archives, and are then indexed by search engines such as Google or Bing. As mentioned in the introduction, search engines use permalinks to categorize your post.

The Issue With Blogger Permalinks




Blogger takes the first 40 characters of your blog post's title and generates an automatic permalink when you publish your post. This is fine if you have a short post title, but let's say you have a long title like this post: "How To Create Search Engine Friendly URLs For Blogger Posts". As you can see from the above image, Blogger automatically truncates it to:

http://www.eyeobserver.com/2016/01/how-to-create-search-engine-friendly.html

"How-to-create-search-engine-friendly" removes vital information that the post is about URLs and that is meant for the Blogger platform.

Creating Improved Permalinks



To solve this, you will need to create a "custom permalink" and manually edit how you want your URL to appear. In this case, we have gone with our full title. The new URL for this post is:

http://www.eyeobserver.com/2016/01/how-to-create-search-engine-friendly-urls-for-blogger.html 

You may argue that having a concise URL is important for SEO and that non-essential words should be removed. With this in mind, we've amended our permalink so that it succinctly summarizes the content of our post, without losing any meaning:

http://www.eyeobserver.com/2016/01/optimized-url-for-blogger-posts.html 

Editing Permalinks for Published Posts



Unfortunately, Blogger doesn't allow you to edit your post's permalink once you have published it. The only option is to click "revert to draft" at the top. Once your post is back in draft mode, you will be able to edit the default permalink using the method written above. Now that the permalink has been updated, you will then need to publish the post again. 

Do take note that if you have promoted a post on social media, whether it's Facebook, Google or Twitter, changing the permalink or URL of your post would mean having to update the link on your social media post as well. Otherwise, your visitor will reach an invalid page when they click on the link.

Conclusion

Going with the default URL generated by blogger can be a major search engine optimization boo-boo as we've found out. Hopefully you will be able to nip the problem in the bud and all the additional search traffic you get makes the corrective action worthwhile. If you have way too many posts to amend, consider creating search engine friendly URLs for your posts going forward instead.

Hope you found this short and simple tutorial useful. Do check out our Blogger Resources page for more tips, templates and guides for your blog.  

Comments

Popular posts from this blog

How to View YouTube Shorts in the Regular YouTube Player

YouTube's "Shorts" is YouTube’s answer to TikTok and Instagram reels but let’s be honest, the YouTube Shorts player lacks some functionality, such as the ability to fast forward and go back in the video. However, you might be surprised to know that every video that loads in the "Shorts" player is actually a regular video, and by changing the URL slightly, you can load the same video in the regular player along with all the functionality of a traditional YouTube video. Changing the URL Changing the URL is the easiest way to switch the player from a technical standpoint. It’s so easy even your grandma can do it, as long as she knows how to type an address into the address bar of a browser.   Let’s use this super popular short video about AI taking over ping pong as an example. Look in the URL bar of a video playing in the "Shorts" player, where you should see the text Shorts/. Replace that text with watch?v= and load the new URL. So in this...

Create QR Codes in Excel With VBA

Need to automate the creation of QR Codes? Excel and VBA can help with that! Here's how to do it in less than 15 lines of code. What we're looking to do is have a URL in a cell and then we're going to use a function that we create in VBA call Google APIs to create the code. Here's a video that explains the whole process of creating a user defined function in VBA that will create QR Codes: Code to create QR Codes in Excel with VBA Open up your Visual Basic editor and insert the following code and then save. To call the function, type =GETQRCODES(Cell Address) where Cell Address is the address of the cell which contains a URL that you want to send your user to. Function GETQRCODES(QRCode As String)     Dim URL As String     URL = "https://chart.googleapis.com/chart?chs=100x100&&cht=qr&chl=" & QRCode     ActiveSheet.Pictures.Insert(URL).Select     With Selection.ShapeRange(1)         .Name = "QR_CODE_" & QRCode...

How To Turn Bluetooth On Windows 11

  Need to connect your Bluetooth device to a Windows 11 computer? You need to turn on Bluetooth on Windows 11 first. Here are all the ways to do so in Windows 11, including the Bluetooth Network Connections and Device Manager. 1. Quick Settings Menu Quick Settings menu usually found on the bottom right of the Windows Taskbar The easiest way to turn on Bluetooth on Windows 11 is to use the Quick Settings menu. The Quick Settings menu is the group of indicators that can be found on the bottom right of the screen, next to your date and time on the taskbar. Expanded Windows 11 Quick Settings menu that shows if Bluetooth is enabled Check whether the Bluetooth icon is colored. If it is, then Bluetooth is already turned on. If it is grey, click the Bluetooth icon to turn it on. Once you have clicked the Bluetooth icon, it will be colored, to indicate that Bluetooth has been enabled on Windows 11. By default, Bluetooth should already be listed in the Quick Settings list. If you...