All things Shopify and commerce
Hello,
We currently use this url : https://www.praavii.in/blogs/news to access blogs. We want to change this url to https://www.praavii.in/blogs. And one blog details url is : https://www.praavii.in/blogs/news/womens-shirt and we want to change this url to https://www.praavii.in/blogs/womens-shirt. So, how can we do this.
Please suggest.
Hi @Praavii
In order to change the URL of the blog, please go to Online store > Blog posts https://prnt.sc/9TRnfvrNDT82 > Choose the blog you want to change the URL > Scroll down to Search Engine listing https://prnt.sc/tS2hDhKtyC9Z > URL handle
I hope this helps,
Best,
Daisy
Hi @Praavii
Unfortunately, you can't remove the blogs handle suffix (news in your case) in shopify
Although, you can change news to something else in the backend
Thanks!
Hi Praavii,
To achieve the desired URL structure changes for your blog, you need to perform URL rewriting and update the necessary configurations.
Here's a step-by-step guide:
Shopify: By default, blogs in Shopify are categorized, but to change URLs:
Implementing 301 redirects ensures old URLs automatically point to the new ones without breaking existing links or affecting SEO.
Apache (using .htaccess😞
apache
Copy code
# Redirect /blogs/news to /blogs
RedirectMatch 301 ^/blogs/news/(.*)$ /blogs/$1
# Redirect the main /blogs/news URL to /blogs
Redirect 301 /blogs/news /blogs
Nginx:
nginx
Copy code
rewrite ^/blogs/news/(.*)$ /blogs/$1 permanent;
rewrite ^/blogs/news$ /blogs permanent;
Submit updated sitemaps via Google Search Console:
By following these steps, you can seamlessly transition to the new URL structure without disrupting user experience or harming your SEO rankings.
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025