• 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.

SETTING UP DNS WITHOUT WWW

umm

yeah it does.

if you have no default ip defined for a domain, it will not give a site unless you access it with something with an IN A record
and then u have to configure the server....
in apache you can wildcard it to show for *domainname.com

@ IN SOA servername. admin.email.servername. (
varies ; serial
3600 ; refresh
900 ; retry
36000 ; expire
36000 ; default_ttl
)

#www IN A ip addy for www
@ IN MX 5(or whatever the preference is) mailserver.
@ IN NS nameserver.
@ IN A this is what you need, put ip addy here and you will get the site without the www

dunno what dns server ur using for NT but that works in bind
I'm pretty sure I'm right..

but one if the gurus here can add if I missed anything
 
LinuxBoy: He was asking if he can change DNS servers so that he doesn't have to type www in explorer. Now that has nothing to do with DNS server configuration from network properties. In most cases www.company.com and company.com have the same IP address. However, this doesn't have to be true, therefore omitting www won't work all the time. Unless you have explorer add it for you.
 
It just hit me that he might be asking about configuring his own domain. In that case, all you have to do is have both www.company.com and company.com refer to the same IP address.
 
I added a new "A record" to my NT DNS server like this:

domain.name (greyed out)
<prefix domain field> (left this blank)
<IP address> (entered the IP address of the web server)


Now when I open a browser and type in domain.name, it pulls up the web site on that server.

Is that what you were trying to do?
 
Back
Top