How to Remove "?m=1" from Blogger URLs

Are you tired of seeing "?m=1" in your Blogger URLs? Learn how to remove it with this step-by-step guide. The "?m=1" parameter is often appended to Blogger URLs, resulting in longer and less user-friendly links. Removing it not only improves the aesthetics of your blog's URLs but also enhances SEO and user experience.



To remove the "?m=1" parameter from the URLs of your Blogger blog, you can follow these steps:


1. Sign in to your Blogger account and go to the "Theme" section of your blog's dashboard.

2. In the left-hand menu, click on "Theme" and then click on the "Edit HTML" button.

3. On the HTML editor page, locate the following line of code:

   ```html

   <b:includable id='main' var='top'>

   ```

4. Below that line, add the following code snippet:

   ```

   <b:if cond='data:blog.url == data:blog.homepageUrl'>

     <meta expr:content='data:blog.canonicalUrl' property='og:url'/>

   <b:else/>

     <meta expr:content='data:blog.url' property='og:url'/>

   </b:if>

   ```

5. Save the changes to your theme by clicking on the "Save theme" button.

6. After saving, go back to the main dashboard of your blog.

7. In the left-hand menu, click on "Settings" and then click on "Search preferences".

8. Under the "Errors and Redirections" section, find the "Custom Redirects" option and click on "Edit".

9. In the "From" field, enter "/?m=1" (without quotes), and in the "To" field, leave it empty.

10. Click on the "Save" button to save the redirect.

11. Finally, check your blog's URLs to see if the "?m=1" parameter has been removed. The URLs should now look cleaner without the "?m=1" part.


Please note that modifying your blog's HTML and settings requires some technical knowledge, and it's always a good idea to backup your theme before making any changes.