How do I enforce an asp.net mvc application to point to the subfolder instead of root folder.
Lets say I have website called: http://mywebsite
I have got totally different asp.net mvc applications called UserApp and CustomerApp. There is no common thing between them. Now, I want to deploy the application like:
- http://mywebsite/UserApp/SomeController/SomeAction
- http://mywebsite/CustomerApp/SomeController/SomeAction
I deployed the application above ways. But, after deployment, only home page works. Any other nested controller/action still points to root path instead of specific path.