Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

  1. http://mywebsite/UserApp/SomeController/SomeAction
  2. 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.

share|improve this question

2 Answers

You probably need to set both subfolders as applications in IIS.

share|improve this answer
can you please provide link or little more guidance on it? – StartingFromScratch Nov 22 '11 at 19:49
bloggingdeveloper.com/post/… – SLaks Nov 22 '11 at 19:56

The answer from Slaks is not enough, as default MVC routing is "/controller/action" from the web root.

You could use the IIS routing module to rewrite paths so that http://yourWebSite/UserApp/SomeController/SomeAction is rewrited to http://yourWebSite:8080/SomeController/SomeAction and setup 2 websites on different ports internally.

Or you could modify mvc route mapping. It could work, ... or not. Search for "MapRoute" in MSDN.

Or you could create 2 websites with 2 different hosts.
This is not unusual for 2 unrelated websites :=)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.