Collections help in routes.yaml

Hi, I’m new to Ghost and a little stuck on how my taxonomies are clashing with a custom collection in my routes.yaml

When I change my taxonomies from 1. to 2. as seen below (to remove the /tag/ prefix) my example.com/faq/ gives back a 404 and any post (example.com/faq/post) fails to load.

Hope someone can point my in the right direction :point_right:

1.

taxonomies:
  tag: /tag/{slug}/

2.

taxonomies:
  tag: /{slug}/

And my entire routes.yaml

routes:
  /subscribe/: subscribe
  /signup/: signup
  /signin/: signin
  /account/: account

collections:
  /faq/:
    permalink: /faq/{slug}/
    template: faq
    filter: tag:faq
    data: tag.faq

  /:
    permalink: /{primary_tag}/{slug}/
    template: index
    filter: tag:-faq

taxonomies:
  tag: /{slug}/

I’ve just tried your custom routes on my end and it works as expected. localhost/tag shows the list of posts tagged with tag and localhost/tag/post-name shows the post. Can you please confirm that the tag faq exists on your end?