Skip to main content

How to remove m=1 in your blog link

Hello guys welcome to my blog In today's blog post, I will tell you how to remove m = 1 from the link of blogspot.

How to remove m = 1 in your blog link and increase speed your blog.
First of all, you have to copy this code which I have given below.
Code for remove👇
<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>

Then you have to scroll the page and where the theme is written there you will click karna, then you will be seeing three dots there, then you have to click on it, then click on edit html.
And you have to go at the end and then you will see the body written there and paste it on it.
If you have not understood anything, then you can see my video

Comments