I am trying to simply do the following:
- Separate blog posts into certain categories for navigational purposes
- The categories can change in the future, so I am opting to add all posts permlinks to one place
- If possible, if someone navigated through the tree, the link in the address bar can continue down that path. for example, if the article lives at mysite/blog/{slug}, but the person found the article in mysite/blog/category1 then if they were to click on the article, it would show as mysite/blog/category1/{slug}
- If someone clicked on an articles first tag, it would take them to the defined page mysite/blog/category1 not mysite/blog/tag
currently, /career-guide/resume-portfolio/ is returning a 400 parsing filter error
and when clicking on a link that goes to /tag/resume-portfolio it is not redirecting
Thank you in advance.
Here is my file thus far:
routes:
/career-guide/resume-portfolio/:
controller: channel
filter: tag[Resume & Portfolio]
/career-guide/search-apply/:
controller: channel
filter: tag[Search & Apply]
/career-guide/master-the-interview/:
controller: channel
filter: tag[Master the Interview]
/career-guide/jabord-in-review/:
controller: channel
filter: tag[Jabord in Review]
collections:
/career-guide/:
permalink: /career-guide/{slug}/
template: index
taxonomies:
tag: /tag/{slug}/
and my json is:
[
{
“from”: “/tag/resume-portfolio/”,
“to”: “/career-guide/resume-portfolio/”,
“permanent”: true,
“from”: “/tag/search-apply/”,
“to”: “/career-guide/search-apply/”,
“permanent”: true,
“from”: “/tag/master-the-interview/”,
“to”: “/career-guide/master-the-interview/”,
“permanent”: true,
“from”: “/tag/job-offer/”,
“to”: “/career-guide/job-offer/”,
“permanent”: true,
“from”: “/tag/succeeding-at-work/”,
“to”: “/career-guide/succeeding-at-work/”,
“permanent”: true,
“from”: “/tag/career-path/”,
“to”: “/career-guide/career-path/”,
“permanent”: true,
“from”: “/tag/pay-salary/”,
“to”: “/career-guide/pay-salary/”,
“permanent”: true,
“from”: “/tag/human-resources/”,
“to”: “/career-guide/human-resources/”,
“permanent”: true,
“from”: “/tag/jabord-in-review/”,
“to”: “/career-guide/jabord-in-review/”,
“permanent”: true
}
]