How to Remove /?m=1 and Improve Your SEO Rankings
Are you tired of seeing "/?m=1" at the end of your Blogger URLs? Don't worry, you're not alone.
This pesky tag can cause issues with your SEO rankings and make your blog look unprofessional. Luckily, there's a simple solution to remove it.
#METHOD 1
First, you need to access your Blogger dashboard and go to the "Settings" tab. From there, select "Search preferences" and find the "Custom Redirects" section.
Here, you'll want to create a new redirect by clicking on the "New redirect" button.
In the "From" field, enter "/?m=1" (without the quotes). In the "To" field, enter your blog's URL without the tag. For example, if your blog's URL is "www.example.com", your "To" field should read "www.example.com/". Make sure to include the trailing slash at the end.
Once you've entered this information, click on "Save" and you're done! Your blog's URLs will no longer include the "/?m=1" tag, and your readers will appreciate the cleaner look.
But why is it important to remove this tag? Well, it's all about SEO. Search engines like Google prefer clean, easy-to-read URLs. When you have unnecessary tags like "/?m=1", it can confuse search engines and potentially hurt your rankings.
Additionally, readers may be put off by the tag, thinking it looks unprofessional or even spammy. By removing it, you'll create a better user experience and potentially increase your click-through rate (CTR) from search engine results pages (SERPs).
So don't wait any longer - remove "/?m=1" from your Blogger URLs today! It's a quick and easy fix that can have a big impact on your blog's success.
#METHOD 2
Step1. Login to Your Blogger Dashboard
Step2. Navigate To Theme Editor and Click Edit As HTML.
Step3. Go to Bottom Of your Theme And search for the code </body>.
Step4. Once You'll find that paste the code above the </body> code which is given to you below and /?m=1 will be removed.
---Code--- ( COPY AND PASTE 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>