Blog categories

Hello, I would need to do a blog with 3 categories.
Is it possible to have /blog/category-name/post-name like the URL? I can not find the solution…
Thanks!


Here is my public share link: LINK
(how to access public share link)

Categories are things you can associate with posts, but they’re not actually where posts live, so visitors can browse post indices at /folder/folder/../category-name, but posts will still live at /cms-collection/post-name.

If you’re doing this for SEO, you could always edit the blog entry URL in CMS settings.

I hope that helps.

Thanks briansage for the response.
The thing is that I need to pass a WordPress blog to Webflow without lost the original URLs
What do you mean with “you could always edit the blog entry URL in CMS settings.”?
Thanks a lot!

For blog post:

No way (yet) to create this URL structure
/blog/category-name/post-name
Only this
/blog/post-name
The solution is to create a 301 * wildcard under webflow setting

Example:
Redirect “all” old posts from

/blog/tech/how-to-install-windows

To

/blog/how-to-install-windows

Try this (Test, before you publish + do not “shut down” the old website until everything works).

/blog/tech/(.*)

to

/blog/%1/

https://university.webflow.com/lesson/set-301-redirects-to-maintain-seo-ranking#redirect-a-folder

1 Like

Thanks so much Siton!!
I will use this solution

D