Skip to main content

How to remove the date and .html from every blogger post url

removedate and .html form blogger

#Remove date and .html from blogger post url

A Common search term which every blogger search is How to Remove Date From Blogger Post URL or how do I remove date from blogger permalink?

Follow the steps below and then date and .html will be removed from the URL of your blogger post.

Step 1 : Login to your Blogger blog and select Theme/Template.

Step 2 : Click on Edit HTML and paste the below code just above the </head> tag

let's see code :

  ➤ Code : mycode.js;

<script type='text/javascript' >
    //<![CDATA[
// BloggerJS v0.3.1
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>

Step 3 : Click on Save in order to save your settings and you are done.

Note : The code snippet provided in this blog is designed to remove the month and year which is attached on Blogger permalink by default.

Benefits Of Removing Date Form Blogger Post URL :

  • Removing Date From Blogger Blog Posts will make your content Evergreen.
  • Gives Professional Permalink to your Blog Posts.

  • It Won’t Let visitors know on which date the post is published.

  • Helps in the Better ranking is Search Engine Result Pages.

  • Make your Blog Post URL Short.

Disadvantages Of Removing Date From Blogger Post URL :

  • Who has just started their blog on Blogger.

  • Removing date from Posts URL is good, but only for new bloggers.

  • If you have already a well established Blogger Blog, and your blog posts are ranking in Google Search Engine Result Pages. Then, you shouldn’t take risk of changing Posts URL.

  • This will affect your website SEO badly. So beware of changing Post URL if, it is ranked in Google Searches.

Comments

Suraj Rai said…
Thankyou so much bro for this script

Check my website www.moviesnation.co

It is looking now awesome

Again thanks
januarprasetiya said…
How to hide error 404 when refresh page on the article. This code is worked. But, have a problem with 404 page when article refresh. Thanks
Thank You Bro for the code.
Sir Chogyal said…
Please fix 404 error while running the new url
SarwarBobby said…
best article ever bro and thanks for sharing the script with us visit the my software blog bestfreesoftwareforpc.blogspot.com

Popular Posts

Django static files not working when debug false || debug true

# Django static and media files not working when debug is false In this article you will learn how to fix problem of not loading static files and media in Django even the DEBUG is FALSE. This is the easiest and safest solution. # Problem: Django static and media files not working when debug is false  ➤ Code: settings.py DEBUG = False #True ALLOWED_HOSTS = [ '*' ] #Host name # Problem Fix: Let's see, How you can fix the problem of Django static and media files not working when DEBUB = False : 1.)First way: devserver in insecure mode If you still need to server static locally ( e.g. for testing without debug ) you can run devserver in insecure mode: python manage.py runserver --insecure --insecure: it means you can run serve...

Django not able to find static files[Solved]

# Django static files not working In this article, you will learn how to fix the problem of not loading static files. This is the easiest and safest solution. In the new version of Django 3.1 and above the settings.py file uses PATH instead of OS to deal with the directory structure. So all the code, we wrote for our static dirs and things like that will no longer work unless we import os at the top of our settings.py file.. Note : This article related to DEBUG = True , if you have problems with DEBUG = False then you can follow this article; Static files not working when DEGUB= False . Have fun! Let's follow a few steps and, solve the problem of not loading Django static files: Step 1 : Check that "BASE_DIR" is defined in your project settings.py , if not then define it  ➤ Code: settings.py import os BASE_DIR = ...