vote up 0 vote down star

Hi,

I need some help with ASP.NET MVC routes. I need to create 2 routes for a cms type application. One route will be for category level URLS, and the other route will be for the actual page content.

  • categories, always ends in a '/'

www.example.com/category/

www.example.com/category/subcategory/

www.example.com/category/subcategory/subsubcategory/

  • content page, doesn't end in a '/', can only be at the root level or after 1 subcategory page.

www.example.com/root-level-page

www.example.com/category/some-page-name

Ideas?

flag

2 Answers

vote up 1 vote down

Routing does not distinguish between URLs ending with a / and URLs that don't end in /.

link|flag
vote up 0 vote down

What's the question?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.