alexey
alexey

Reputation: 8480

ASP.NET MVC: Routing hierarchy URL

How can I make 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 Index action method of CategoryController.

Upvotes: 4

Views: 960

Answers (1)

alexey
alexey

Reputation: 8480

Found the answer:

Should use "/category/{*path}" instead of "/category/{path}" in the routing path.

Upvotes: 2

Related Questions