WHAT IS WRONG WITH THE URL?

daniel1113

Diamond Member
Jun 6, 2003
6,448
0
0
It has to do with the way the server is setup, specifically the DNS settings.

If the webmaster doesn't set it up correctly, you will either get a different page, or just an error.
 

AFB

Lifer
Jan 10, 2004
10,718
3
0
Originally posted by: daniel1113
It has to do with the way the server is setup, specifically the DNS settings.

If the webmaster doesn't set it up correctly, you will either get a different page, or just an error.

Yes, some point domain.com to www.domain.com.
 

kkeennyy

Banned
Sep 23, 2004
83
0
0
Originally posted by: daniel1113
If the webmaster doesn't set it up correctly, .

"correctly"? It is often by design. I reserve WWW host to educate people about the pointlessness of WWW prefixes, but then I also use mod_rewrite to enlighten people about their IE spyware infections, too.

 

daniel1113

Diamond Member
Jun 6, 2003
6,448
0
0
Originally posted by: kkeennyy
Originally posted by: daniel1113
If the webmaster doesn't set it up correctly, .

"correctly"? It is often by design. I reserve WWW host to educate people about the pointlessness of WWW prefixes, but then I also use mod_rewrite to enlighten people about their IE spyware infections, too.

Great... I hope you don't lose any potential visitors.
 

Garion

Platinum Member
Apr 23, 2001
2,327
4
81
OK, perhaps a bit more explanation is in order...

Background: DNS is a fairly simple thing - It's a system that maps hostnames ("www.foo.com") into IP addresses (192.168.222.35). Your computer actually communicates to other machines on the Internet via IP address, not it's hostname. Think of DNS as an Internet phone book - You look up someone's name in the phone book and it gives you back their phone number. You then use that number to contact them.

A hostname is just something easy for us to remember. When you punch in "www.foo.com" in your browser, your computer goes and looks it up on it's DNS name, finds it's IP address, connects to that address and does it's business.

"www" is just a acronym for "World Wide Web". It's just a convention to name web servers. There's nothing saying that you have to have it. There's lots of web servers out there that DON'T start with "www", like "search.yahoo.com".

Using the domain name as a hostname ("foo.com") is a bit different on the back end, but, for the most part, can be treated like any other name. It's not necessarily tied to the www.foo.com, it can be something totally different.

So, it's really not a DNS problem - It's just someone who hasn't taken the time to aim "foo.com" to "www.foo.com" as a shortcut, or someone who is using "foo.com" for something other than web services.

I could go a lot deeper (i.e. host headers on web servers in hosting sites, etc.) but hopefully you get the idea.

- G