I'm trying to figure out a structure for a hosted application that i'm working on. I've got a domain lets call it app.company.com (a sub-domain company.com of course) that is setup to redirect to my IIS 6 web server.

I would like to set up one website in IIS for each client that will use this application. And have the URL schema be like this:

app.company.com/clientA --> would point to ClientA website in IIS

app.company.com/clientB --> would point to ClientB website in IIS

Do you guys have any pointers or best practices for my scenario?

link|improve this question
Are these just separate websites or are you trying to do something special, like pull up the same website via different urls? – Cypher Oct 23 '10 at 4:22
feedback

1 Answer

Vdirs need to be under the same site unless you front the site with a load balancer or proxy of some sort.

Can you use clientA.company.com? If so, then you can use the unique domain names (cnames) for each site.

link|improve this answer
Hi Scott, thanks for the reply. No i'm afraid that it wouldn't be acceptible for us to use the clientA.company.com approach. – user28502 Dec 10 '09 at 11:34
Your only option then is to front the sites with a load balancer. If you're starting fresh, I would recommend IIS 7 + ARR. You can do layer 7 routing that way. – Scott Forsyth - MVP Dec 10 '09 at 12:18
feedback

Your Answer

 
or
required, but never shown