Hello everyone, I wish you a healthy day.
I have two different MVC projects, I want my project to run under path localhost:5001/admin/
and the other project to run under localhost:5001/member/
path. I want to start both projects within the same main function.
I don't want the two projects getting mixed up due to a large number of controllers and views.
I ran it under the Areas folder, however, because the project is very large, I noticed that the files were mixed with each other, so I want to run it in two different layers, but in the same solution.
Some hosting companies do not allow for two separate web tiers, so I want to combine two different web tiers in one project.