Map a virtual directory to an ASP.NET MVC action

539 Views Asked by At

For our newsletter application, we want to hide our application directory by using a virtual directory on the main website. So for instance, our app is at app.example.com and the viewer is at app.example.com/article/view/id. We would like to use something like example.com/newsletter/id as a link in the newsletter for the public to view. Is this possible? If so, how?

This is so we can hide the structure of the application from the readers so people don't start browsing the structure of our application. Yes, we do have security on the application.

I believe we are on IIS 6.

2

There are 2 best solutions below

0
On BEST ANSWER

We decided to write a page that pulled the html from myapp.domain.com to domain.com/app.aspx. We didn't want to mess with the Global file at this time.

7
On

Virtual directories are just containers for web applications. So a virtual directory corresponds to an ASP.NET (MVC) application. They are mapped to a physical location of the application and belong to a particular web site. When you say app.example.com you have already mapped this domain to some web site in IIS, so you could only have sub virtual directories: app.example.com/app1, app.example.com/app2, ... But if you have a site which is mapped to the example.com domain then you could have virtual directories which correspond to example.com/app1, example.com/app2, ... And of course inside each app you could have routing which corresponds to controller/action/id.