I was wondering if I could create a routing map with one more higher level than the controller. The typical routing would include "/controller/action/id". What I am looking for is something like "section/controller/action/id" or "controller/section/action/id". How can i do this?
|
1
|
|||||
|
|
|
No problem. Just create a route the URL of which is, for example
...and supply a default controller and action as usual. A concrete example of this is
This will map, for example, the following URLs:
Note, though, that if you also have a default route, for example like this:
...then controller action methods in the Admin routing may also be accessible via this route. Use the URL Routing Debugger to find out for sure. |
|||
|
|
Are Areas the answer? |
||
|
