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
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}/