IIS accessing site without port

hosthttp-headersiisport

I have deployed our company intranet website to IIS 7 server added the following binding info.

IP Address: All Unassigned
port: 3333
domain name: subdomain_name.domain_name.com

Although the site is deploy on port 3333, I want to be able to access site without port.

I have added the entry in dns also. I can ping the fully qualified domain name (subdomain.domain.com) but when I add that url in the browser I get 404.

When the site is deployed under port 80 it works just fine. However, it doesnt work when my site is hosted on anything other then the default port (80).

Is there a way to do this?

Best Answer

When you enter a URL without a port, port 80 is implied.

No browser that I know of has any way to change this behavior; if you want to use port 3333, then you'll need it in the URL.

Related Topic