Best Way To Remove Date and HTML Extension In Blogger – 2023

Want to remove date and HTML extension from your blogger permalink, check out this article which helps you to remove date and HTML extension in Blogger permalinks.

Everybody wants to remove the date and HTML extension from their blogger permalink, but they do not get the right information on it.

In the previous article, I had shown to you 12 Quick Methods To Improve Website Speed in Blogger. But in this article, I will show you how to remove the date and HTML extension in blogger. Blogger although is a great source for creating a money-making blog for free but it has certain limitations

One of the limitations in the blogger is the permalink option which is not available to us to change the permalink.

code to remove date and html extension in blogger.
Blogger Permalink is trash

Example:-

The blogger has only a default permalink (https://www.example.com/year/month/post-title.html) Whereas it is possible in WordPress to change the permalink easily without having any plugin install or without any implementation of the code.

But in blogger, it’s quite difficult to remove. However, you can remove the date and HTML extension from the blogger permalink by adding a little bit javascript code in your blog theme So before getting to code, let’s understand some terms.

1) What Is Permalinks?

Basically, a permalink is a URL structure of a particular website. If you consider this page itself, it has an Url structure (https://www.shoutmeback.com/remove-date-and-html-extension-in-blogger)

The above URL is nothing but a permanent location of my post. Therefore, it is called as permalinks

2) Why To Remove Date From Blogger Permalink?

It is necessary to remove the date and not use any special symbol in the blogger permalink for search engine optimization.

Search engines also have a ranking factor algorithm regarding your blog permalink. The permalink should not be the length and must not contain any date format and a special symbol. Recently, Backlinko had analyzed over 1 million SERP’s (search engine result pages).

They found that the post which does not contain any date or month or any other format in the permalinks ranks better than others in comparison to other competitions. So, if you want to rank well on Google, you will have to remove the date present in blogger permalinks.

3) Why To Remove HTML Extension From Blogger Permalink?

Google and other search engine algorithm to rank a website change year by year. Recently, google hummingbird algorithm had changed a lot of factors to rank a website up to 200+ factors.

One of the factors included was no extension in the URL. Leaving an extension in the URL is bad for SEO. Also, when you scan your website for SEO through CheckBot, you will notice that it will display “Don’t Use Extension” during analyzing the SEO of your site.

You can also notice any google related sites like Google Adsense community center etc, none of the sites contain webpage extension in their URL.

4) How To Remove Date and HTML Extension In Blogger?

In blogger, you need to have a little knowledge about implementing the codes in the theme. There is a javascript code available on the internet which helps to remove date and HTML extension in blogger permalinks.

But, there is no guarantee of how well it will affect your SEO. It could be good or it could be worse as the code developer had not described it as safe or bad for SEO.

But you can implement and try it all by yourself and if you think that it is creating any problem remove the code. Before you try to implement the code, take a backup of your theme.

To create a backup of your theme, follow these steps:-

  1. Go to your Blogger dashboard.
  2. Click on the “Theme” section present on the left side of the window below the “Layout” section.
  3. Select “Format Theme” on the screen’s top right side.
  4. Click on “Download Theme” and your current theme code will be download in your downloads destination folder.

Once, you had taken a backup of your theme, it time to implement the remove date & HTML extension code in the blogger.

5) How To Implement Code In Your Blogger Theme?

Implement part is simple if you read and follow the steps properly. But however, if you had any problem during implementing the code, comment below. I will solve the problem for you.

To implement the code in your blogger theme, follow these steps:-

  1. Copy the below code. Go to your blog theme in the “theme” section
  2. Click on “Edit HTML”. Search for “/body” tag and paste the copied code just above the “/body” tag.
  3. Save your theme.
  4. All done, you had successfully remove the date and HTML extension in the blogger.

Code:-

 <script type='text/javascript'>  
 //<![CDATA[  
 // BloggerJS v0.3.1  
 // Copyright (c) 2017-2018 Kenny Cruz  
 // Licensed under the MIT License  
 var urlTotal,nextPageToken,postsDatePrefix=!1,accessOnly=!1,useApiV3=!1,apiKey="",blogId="",postsOrPages=["pages","posts"],jsonIndex=1,secondRequest=!0,feedPriority=0,amp="&"[0];function urlVal(){var e=window.location.pathname,t=e.length;return".html"===e.substring(t-5)?0:t>1?1:2}function urlMod(){var e=window.location.pathname;"p"===e.substring(1,2)?(e=(e=e.substring(e.indexOf("/",1)+1)).substr(0,e.indexOf(".html")),history.replaceState(null,null,"../"+e)):(e=(e=postsDatePrefix?e.substring(1):e.substring(e.indexOf("/",7)+1)).substr(0,e.indexOf(".html")),history.replaceState(null,null,"../../"+e))}function urlSearch(e,t){var n=e+".html";t.forEach(function(e){-1!==e.search(n)&&(window.location=e)})}function urlManager(){var e=urlVal();0===e?accessOnly||urlMod():1===e?getJSON(postsOrPages[feedPriority],1):2===e&&(accessOnly||history.replaceState(null,null,"/"))}function getJSON(e,t){var n=document.createElement("script");if(useApiV3){var o="https://www.googleapis.com/blogger/v3/blogs/"+blogId+"/"+e+"?key="+apiKey+"#maxResults=500#fields=nextPageToken%2Citems(url)#callback=bloggerJSON";nextPageToken&&(o+="#pageToken="+nextPageToken),nextPageToken=void 0}else o=window.location.protocol+"//"+window.location.hostname+"/feeds/"+e+"/default?start-index="+t+"#max-results=150#orderby=published#alt=json-in-script#callback=bloggerJSON";o=o.replace(/#/g,amp),n.type="text/javascript",n.src=o,document.getElementsByTagName("head")[0].appendChild(n)}function bloggerJSON(e){var t=[];if(useApiV3||void 0===urlTotal&&(urlTotal=parseInt(e.feed.openSearch$totalResults.$t)),useApiV3){try{e.items.forEach(function(e,n){t.push(e.url)})}catch(e){}nextPageToken=e.nextPageToken}else try{e.feed.entry.forEach(function(n,o){var r=e.feed.entry[o];r.link.forEach(function(e,n){"alternate"===r.link[n].rel&&t.push(r.link[n].href)})})}catch(e){}urlSearch(window.location.pathname,t),urlTotal>150?(jsonIndex+=150,urlTotal-=150,getJSON(postsOrPages[feedPriority],jsonIndex)):nextPageToken?getJSON(postsOrPages[feedPriority]):secondRequest&&(nextPageToken=void 0,urlTotal=void 0,jsonIndex=1,secondRequest=!1,0===feedPriority?(feedPriority=1,getJSON("posts",1)):1===feedPriority&&(feedPriority=0,getJSON("pages",1)))}function bloggerJS(e){e&&(feedPriority=e),urlManager()}bloggerJS();  
 //]]>  
 </script>  

“The above code was taken from “WonderKrish” with proper backlink and credit is given to them”

If something goes wrong with the implementation, you can use the backup of your theme which you had taken before implementation.

6) How To Revert Back Your Changes in Blogger Theme After Implementation?

Keep in mind to always create a backup of your theme before implementation. It is the most important step to revert any error changes in the future.

To install the backup theme in blogger, follow these steps:-

  1. Login to your dashboard. Click on the “theme” section on the left sidebar.
  2. Click on “Backup/Restore” located at the top right corner.
  3. Tap on the “Upload Files” and select your backup theme.
  4. After selecting, click on “Import”.
  5. You had successfully installed your backup theme in the blogger.

Final Thoughts

I had covered all the points required to remove the date and HTML extension in the blogger. However, it is not mentioned by the code developer whether the code turns your SEO good or bad.

So, try it at your own risk. If you have any problem related to any queries, you can comment below and I will provide the solution fast.

Please share the post with your other friends who want to remove the date and HTML extension in blogger permalinks.

43 thoughts on “Best Way To Remove Date and HTML Extension In Blogger – 2023”

    • Your comment had given me more motivation to write some good blog post in future.

      Do you want to learn more about anything in blogger?

      Reply
      • It is working perfectly but there is issue, Googlebot can’t fetch it. The post are not indexing.

        If there any idea to fix it?

        Reply
    • Hi thanks for the quick reply sir but what happened was I had done the steps perfectly. Yes, I had changed the permalink exactly for example (site name).blogspot. com/2019/rejirajonline then after when the page loaded I could see the URL as (site name).blogspot.com/rejirajonline in the address after then when I copied the 2nd URL example and searched it returned to 404, But now I have no regret because I have learned something from you. I would now rather stick to what blogger.com provides. Thanks once again

      Reply
      • Yes the Bloggers own permalink is better option but everybody wants to remove it. Therefore I had too mentioned in the post that Blogger Permalink is still better.

        Reply
    • It will not make any effect on backlinks but if you had made backlink for your mobile version i.e ?m=1 then there is a chance that it will affect the backlink.

      This process of removing the date and HTML extension should be done when you create a blog.

      Reply
  1. I have try to use this code in my website http://www.tech-spots.com
    Really it’s working good but when i refresh my page or open in new window without date url once error show 404 page not available then loaded, might be it’s effect in SEO, I am not sure about it, what I did I had removed script and leave it as normal
    anyway thank you very much

    Reply
  2. let’s suppose I applied this method as you mentioned in your blog, it means removing .html is the changing of URL. So will it be necessary to redirect all the old .html URLs to the latest updated URLs? Waiting for your reply. Thanks

    Reply
  3. It worked well. But found some problem. After the content on the page is shown and reload the page, it shows an error message for a while and then again reloads to show the content. If I give my URL without .html to anyone and they enter the URL then the error message is shown initially. My site is ujwalamsal.com.np

    Reply
  4. What a fantastic website! This is so helpful information. I am just over one month into blogging and have achieved some early milestones. Anyway, I’m looking forward to reading more of your articles that you’ve linked in here.

    Reply
  5. DEAR SIR…

    No one can “shoutyouback” because of so useful content you are publishing for us in (Blogging Guides) categories even 8 more on your website.

    Anyways…

    “Do I need to redirect published Url after Remove Date In Blogger through the above code?
    Is there any ranking decreasing effect after removing dates from Url?”
    Thanks hope your reply.

    Reply
    • No Google will automatically redirect it. But try it at your own risk. The reason behind that is many blogger sees positive impact while some sees negative impact. Just always watch your search console if any problem occurs in ranking. If it occurs then please remove the code. That’s the reason I told to take the backup of your theme before changing any code in it.

      Reply
  6. Hi Friend,
    I am new to blogging.
    I was in search of this thing. I have already seen this code on quora and all but was hesitant to do. after reading you post I got the confidence to do it. Thank You. It worked well.
    I have another doubt, maybe you could help me.

    *I am blogging in malayalam(non english) language. How can I get search eangine crawling my content?

    Reply
  7. Wow! I worked pretty well. Thanks a lot!

    How do you do the table of contents using blogger? This is amazing! Keep up the great work! You rule!

    Reply

Leave a Comment