skip to Main Content

I’m just tryin’ to set up a link as the ‘301 method’, tryin’ to redirect from ‘/collections/all’ to ‘/collections/all/shop-all’ on Shopify, where when I click from the ‘Shop’ button, it needs me to redirect directly to the page ‘/collections/all/shop-all’ (while the other one ‘/collections/all’ doesn’t need to work anymore) but I think Shopify don’t allows to do that.

Is that possible to do that?
(I know you can do directly from any of .liquid with HTML5, JS or Liquid).

Plz let me know at the comments, I really appreciated!

Trying to redirect from ‘/collections/all’ to ‘/collections/all/shop-all’ on Shopify applying the ‘301 method’

2

Answers


  1. If you mean creating a redirect on /collections/all through Shopify backend you can’t according to their help center. This is because it is a reserved path

    To this date, the following prefixes cannot be redirected: /apps, /application, /cart, /carts, /orders, /shop, or /services

    and neither the following paths: /products, /collections, /collections/all

    Login or Signup to reply.
  2. 1, ‘/collections/all’ is the collection path for all products = not changeable
    2, ‘/collections/all/anything’ is the collection path for all products plus single product tag applied to it
    3, to get ‘/collections/all/anything’ working you need an existing product tag for at least one live product

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search