Linking sites for multiple IIS 7.0 domains

I have three websites, each with its own domain, going to my one Windows Server 2008 IIS 7.0 web server.

  • example1.com
  • example2.com
  • example3.com

Linking sites for each:

IIS 7.0 Site Bindings example1.com http://img371.imageshack.us/img371/4215/example1pf4.gif

IIS 7.0 Site Bindings example2.com http://img371.imageshack.us/img371/2567/example2xx0.gif

IIS 7.0 Site Bindings example3.com http://img266.imageshack.us/img266/8186/example3rh9.gif

When I go to example1.com , I see my website example1.

When I go to example2.com , I see my example2 website.

But, when I go to example3.com , I see my website example1, not the website example3, which I expect.

What's happening? Why can example2.com work, but example3.com does not work?


The problem is solved!

I deleted and then recreated the example3.com website in IIS and it works now.

I didn’t change anything. He either initially had a simple typo or an act of recreation, it just happened to fix the hiccups in IIS.


It stops working again after setting up additional redirects in IIS, forcing websites to use subdomains:

http://example1.com/ redirects to http://www.example1.com/

I deleted and then recreated the example3.com websites again; I have reset IIS; I rebooted the server. It is still not working properly.


I get it. This is not an IIS issue. This is a DNS problem.

example3.com traffic for some reason is directed to a web server in another company. They serve a page with only an HTML frame on it. This frame loads the page with the address http://example3.example1.com . This is what I need to process on my web server.

+6
iis iis-7 dns binding hosting
source share
1 answer

I would confirm that you have example3.com indicating the correct location on the disk. Also make sure it is not stopped.

Rollback to example1 is due to a binding record without a header value.

+1
source share

All Articles