Iis – Subdomain redirects to a given virtual directory in IIS

domain-name-systemiisiis-7subdomain

I have a domain where I have created several subdomains. I manage to alter the DNS records, so a given subdomain redirects to a different server. For example?

app.domain.com -> 123.45.66.11 

Now, my app is an ASP.NET MVC app responding to the following URL 123.45.66.11/app. How do I configure IIS, that the url

http://app.domain.com -> 123.45.66.11/app

points to my virtual directory app instead of the root.

Best Answer