Skip to main content

Archive

Show more

How to remove m=1 from blogger url

How-To-remove-m1-from-Blogger-url

How to remove m=1 from blogger url

  • 01. Go to Blogger Dashboard
  • 02. Click on theme
  • 03. Click on customise dropdown
  • 04. Select Edit HTML Option
  • 05. Now Copy below code

  • <script type='text/javascript'>
    //<![CDATA[
    var uri = window.location.toString();
    if (uri.indexOf("%3D","%3D") > 0) {
    var clean_uri = uri.substring(0, uri.indexOf("%3D"));
    window.history.replaceState({}, document.title, clean_uri);
    }
    var uri = window.location.toString();
    if (uri.indexOf("%3D%3D","%3D%3D") > 0) {
    var clean_uri = uri.substring(0, uri.indexOf("%3D%3D"));
    window.history.replaceState({}, document.title, clean_uri);
    }
    var uri = window.location.toString();
    if (uri.indexOf("&m=1","&m=1") > 0) {
    var clean_uri = uri.substring(0, uri.indexOf("&m=1"));
    window.history.replaceState({}, document.title, clean_uri);
    }
    var uri = window.location.toString();
    if (uri.indexOf("?m=1","?m=1") > 0) {
    var clean_uri = uri.substring(0, uri.indexOf("?m=1"));
    window.history.replaceState({}, document.title, clean_uri);
    }
    //]]>
    </script>
    


  • 06. Paste those code just before end of the "body" tag like this. You can find this tag in end of blogger code. After that clikc on save button.
  • Paste-m1-removing-Script

Comments