I have a Blogger blog that shows the post links with ?m=0 and ?m=1 extensions on mobile phones. They work fine on my PC. Is it normal?
If not, I wish to know how to delete the ?m=1 URL extensions on mobile devices.
How to Remove ?m=1 From Blogger Blog Post URL?
-
- Editor
- Posts: 177
- Joined: 23 Oct 2023, 10:03
How to Stop ?m=1 Mobile Blogger Page Redirection?
- How to Perform a Network Power Cycling?
- Internet Download Speed is Low With Belkin Router
- Delete All Google Chat Photos Sent In a Single Click
- How to Find Your JioFi SIM Mobile Number?
- Connect GoDaddy Domain Name To Blogger Blog With a 301 Redirection
- Can I use Zoho Mail for free?
- How to Change The Default Ping Packet Size?
- How to Detect RAM Module Defects Earlier?
- Google Chat is Not Loading Photo Previews
- Does GoDaddy Still Offer Free Business Email Service?
-
- Global Moderator
- Posts: 136
- Joined: 14 Nov 2023, 04:39
- Location: Brooklyn
How to Remove Blogger m=1 from URLs?
We can easily remove ?m=1 from the Blogspot post URL. Let me explain the steps below.
Step-1: Make sure your Blogger blog has a responsive theme.
Step 2: Remove the Mobile Redirection With a Script.
Step-1: Make sure your Blogger blog has a responsive theme.
Step 2: Remove the Mobile Redirection With a Script.
- Log into the Blogger account.
- Tap on Theme.
- Click on HTML Edit from the Customize menu.
- Type the following script before the closing of the HTML body tag.
Code: Select all
<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>
- Save the changes.
How to Cancel the ?m=1 Blogger Redirection?
Thank you for the solution. But, can you explain how to open Edit HTML option?
-
- Global Moderator
- Posts: 136
- Joined: 14 Nov 2023, 04:39
- Location: Brooklyn
Stop ?m=1 Blogger Page Redirection On Mobile Devices
Once you log into the Blogger account, click the Theme from the left menu.
Click on the downward arrow button.
Click the Edit HTML to continue the steps I mentioned.
Click on the downward arrow button.
Click the Edit HTML to continue the steps I mentioned.
Re: How to Remove ?m=1 From Blogger Blog Post URL?
Good. It was simple. Thanks.