I have the follow folder strucutre as default when creating a MVC project in Visual Studio:
.
├── content
├── controllers
│ └── home
├── models
└── views
├── account
└── home
└── index.aspx
I want to create a similar structure but WITHIN an admin folder like so:
admin
├── content
├── controllers
│ └── home
│ └── controller
├── models
└── views
├── account
└── home
└── index.aspx
When I try to link to /admin/home it says it can't be find. Is this method of nesting even possible?