3

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?

2 Answers2

2

Use a redirector.

app.company.com/CLioentA gets redireted to ClientA.app.company.com.

Pretty much every reverse proxy should do. It can also rewrite the HTML in the pages when needed.

Pretty much the only solution I can see.

TomTom
  • 52,109
  • 7
  • 59
  • 142
0

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.

Scott Forsyth
  • 16,599