0

In Hexo I would like to get rid of categories in the url. right now it looks like:

localhost:4000/categories/artists localhost:4000/categories/projects

I would like to strip categories so that the urls become:

localhost:4000/artists localhost:4000/projects

Is this possible?

Pwdr
  • 3,712
  • 4
  • 28
  • 38

1 Answers1

0

Sure, just set category_dir variable to an empty string ("") in configuration file of your blog (_config.yml)

Louis Barranqueiro
  • 10,058
  • 6
  • 42
  • 52
  • That works, but what about the page_title in browser-tab, that still shows "categories"... ? –  Aug 15 '17 at 16:54