I would like to host multiple applications in the same IIS. The problem is that I need to use the same URL as www.example.com, but different directories. Also, the port should be 80 or at least transparent to the end user, so I would like to have something like this:
www.example.com/app1
www.example.com/app2
The problem is that IIS does not allow me to create 2 sites with the same domain and the same port, and I do not want to use subdomains, if possible.
Both applications should not be on the same site, since they are separate applications with different schedules.
Is there any way to do this? Or do I need to use subdomains?
source share