Hello
I have the following structure in my Webflow site with CMS:
Ideally, what I want is:
domain.com/blog
- The blog home page
domain.com/blog/category-name/blog-post-title
- A Blog Post
domain.com/blog/categories
- List all Categories
domain.com/blog/categories/category-name
- Details for a single Category
domain.com/blog/authors
- List all Authors
domain.com/blog/authors/author-name
- Details for a single Author
What I currently have is:
domain.com/blog
- works fine
domain.com/blog/blog-post-title
- works fine (but would prefer the category in the slug)
domain.com/blog/categories
- 404 error even though page is there
domain.com/blog/categories/category-name
- works fine
domain.com/blog/authors
- 404 error even though page is there
domain.com/blog/authors/author-name
- works fine
I’m guessing this is caused by a conflict between the /blog
slug I have set on the CMS collection and the /blog
folder I have in the site structure, so I have two questions…
- is it possible to have blog articles under the category slug? e.g
domain.com/blog/category-name/blog-post-title
? - Is it possible to have a listing page for all categories at
domain.com/blog/categories
and a listing page for all authors atdomain.com/blog/authors
?
Thank you!