• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Multiple webpages, single IP?

DougK62

Diamond Member
So my company has several webpages. Most of them are currently hosted by outside companies. We have one that we host here in our building. We now want to bring all of the outside-hosted webpages in-house. I would really like to just use the single IP we have going to our current web server to host these several webpages. What I want done is this:

http://www.xyz.com --> resolves to --> http://12.34.56.78/xyz
http://www.abc.com --> resolves to --> http://12.34.56.78/abc
http://www.def.com --> resolves to --> http://12.34.56.78/def
etc.
etc.

I'm not worried about thhe bandwidth - we're on a T1 and these don't get many hits.

So my question: Is this possible to do with DNS? And if it is, Ii'm open to pointers to get my going in the right direction for implementing this. Windows NT 4.0 Server, IIS 4.0.

Thanks 😀:beer:

 
Set the DNS so all of the domain names have an A record for the IP address of your webserver. Then set your webserver up for virtual hosts and it will take care of determining what page was requested and pulling the content from the appropriate directory. I'm not familiar with IIS so I can't tell you how to do that.
 
Or just use a single A record with the actual host name of the web server and use CNAMEs for all the websites.

That way when (notice I didn't say if, WHEN) your IP address changes it is extremely easy.

Generally you only want one A record for a host in your zone file and aliases for all other names, makes your DNS very clean and simplified.
 
Back
Top