|
Home > Archive > alt.certification.cisco > January 2003 > No www needed in URL
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
No www needed in URL
|
|
| Tom Feldsten 2003-01-27, 10:24 am |
| Wasn't sure about posting here, but think I'll try.
Why is it that when a URL is typed into a browser, there is no need to type
the "www" that used to always have to precede the rest of the domain name?
My guess is that the authoritative DNS for that server will resolve an
address without the www to the www.addresshere.com.
Any other suggestions (or definite answers)?
Thanks
| |
|
| *** post for FREE via your newsreader at post.newsfeed.com ***
I once had to set up a url alias in apache doing what you describe, the
section of httpd.conf looked like this;
<VirtualHost www.website.co.uk>
ServerAdmin admin@website.co.uk
ServerName www.website.co.uk
ServerAlias website.co.uk
DocumentRoot /home/website/htdocs
ScriptAlias /cgi-bin /home/website/cgi-bin
TransferLog /home/website/logs/access.log
ErrorLog /home/website/logs/error.log
</VirtualHost>
This will be similar with other webservers i'm sure, you then need to get
dns pointed without the www also.
"Tom Feldsten" <tomfeldsten@hotmail.com> wrote in message
news:3e355b04$0$155$9a6e19ea@n
ews.newshosting.com...
> Wasn't sure about posting here, but think I'll try.
>
> Why is it that when a URL is typed into a browser, there is no need to
type
> the "www" that used to always have to precede the rest of the domain name?
> My guess is that the authoritative DNS for that server will resolve an
> address without the www to the www.addresshere.com.
>
> Any other suggestions (or definite answers)?
>
> Thanks
>
>
-----= Posted via Newsfeed.Com, Uncensored Usenet News =-----
http://www.newsfeed.com - The #1 Newsgroup Service in the World!
-----== 100,000 Groups! - 19 Servers! - Unlimited Download! =-----
| |
|
|
|
|
| Hansang Bae 2003-01-28, 8:24 pm |
| In article <3e3615ab$0$207$9a6e19ea@news.newshosting.com>,
tomfeldsten@hotmail.com says...
> Yea, that is kinda what I was thinking. What the www really is, of course,
> is the target system at the domain referred to in www.domain.com This is
> what confused me, and why I thought that the DNS had to know to resolve
> domain.com to www.domain.com. And if it's not DNS, then it has gotta be a
> web server thing, where the target system is aliased to either
> www.domain.com or domain.com, just as someone else pointed out.
> Still wish there was someone with the definitive answer.
Definitive answer to what? Why don't know need www? Keep in mind how
DNS works. There's a root server that knows about the .com world. Then
there's a server that knows about domain.com world. So if I type in
www.foobar.com, then my dns server tries to resolve it. Since I'm at
foo.com, it asks it's name server how to reach foobar.com. It goes up
the DNS food chain until someone says "hey, I know about foobar.com..."
Also, the name isn't important. It's the port number that counts.
--
hsb
"Somehow I imagined this experience would be more rewarding" Calvin
*************** USE ROT13 TO SEE MY EMAIL ADDRESS ****************
******************************
******************************
********
Due to the volume of email that I receive, I may not not be able to
reply to emails sent to my account. Please post a followup instead.
******************************
******************************
********
|
|
|
|
|