I'm trying to map the following routes in MVC2.
[absoluteUrl]
[absoluteUrl]/[dynamicBlogName]
These two routes should map to the same controller/actionresult.
e.g PostController/Index
I also need to map these routes.
[absoluteUrl]/post/[dynamicPostName]
[absoluteUrl]/[dynamicBlogName]/post/[dynamicPostName]
These two routes should also map to the same controller/actionresult.
e.g PostController/Default
Any help would be greatly appreciated.