Friends, whenever you open your blogger website, then the URL of your website looks something like this.  In the URL of the (https://techamphix.blogspot.com/?m=1) website, you get (?m=1) show.  (?m=1) Why it appears in your website.  Can it be removed?


Hi friends!
Welcome to Tech Amphix website

Today I will tell you the solution to this problem.  You can permanently remove (?m=1) from the URL of your blogger website.  This will not cause any problem in your website.  Which method I am going to tell you is 1000% working method.  You just have to follow the steps given below and you will be able to delete (?m=1) from your website URL permanently.

Step 1:
Login to your blogger dashboard

Step 2:
Go to your theme and click on edit HTML

Step 3:
In HTML Go to end and Search </body>

Step 4:
Copy script given below and paste script above </body>
 <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>  

Step 5:
Click on save theme

Tech Amphix
If you have any questions please comment us