How can I do routing for this?
URL: / category / main / sub / or / category / main / sub1 / subsub /
I want to have / main / sub / and / main / sub1 / subsub / as parameters in the action method of the CategoryController index.
Found answer:
Must use "/ category / {* path}" instead of "/ category / {path}" in the routing path.