1

I want the follow URLs in my MVC application:

/Admin/Accounts/Groups
/Admin/Accounts/Users

I know I could create an Area named Admin, and then create Groups and Users controllers inside that area.

Could I instead create nested areas? (An Area named Admin, and inside of this area an Area named Accounts)

1 Answer 1

2

To accomplish your desired URL above, just specify it in the route configuration of your "Admin" area like this:

public override void RegisterArea(AreaRegistrationContext context)
{
    context.MapRoute(
        "Admin_default",
        "Admin/Accounts/{controller}/{action}/{id}",
        new { action = "Index", id = UrlParameter.Optional }
    );
}

No need to create Groups or Users controllers.

Sign up to request clarification or add additional context in comments.

1 Comment

This may have solved the user's problem but it doesn't answer the question.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.