ExamNotes.net  -  IT certification portal

ForumsCertResearchTop sitesNewslettersFree email
HomeRegister
Exams Notes
Practice exams
Exam games
Questions by email
Online training
Training videos
College degrees
Boot camps
Book store
Links directory
Tell a friend
For webmasters

CompTIA Exam Vouchers
Save money on CompTIA exams
Question of the day
Sign up to receive
interactive practice questions
for MCSE, CompTIA
Cisco and other exams
TestKing
Get MCSE, MCSD, CCNA, CCNP,A+, N+ and many more

* ExamSheets *
Guide for Success!
Actual Questions & Answers
MCSE, MCSD, A+ ,CCNA, CCNP
Oracle 8i, Oracle 9i

Online practice tests

Certification sites

Online university

Online college

Online education

Distance learning

Software forum

Server administration forum

Programming resources






This is interesting: Free IT Magazines | Databases help forum



General discussions > Public newsgroups > alt.certification.cisco > No www needed in URL

Show a Printable Version
Email This Page to Someone!
Receive updates to this thread






Author No www needed in URL
Tom Feldsten
Guest




Registered: Not Yet
Location:
Country:
State:
Certifications:
Working on:

Total Posts: N/A
No www needed in URL

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


Report this post to a moderator

Old Post 01-27-03 03:24 PM
Reply w/Quote Edit/Delete Message IP: Logged
Gary
Guest




Registered: Not Yet
Location:
Country:
State:
Certifications:
Working on:

Total Posts: N/A
Re: No www needed in URL

*** 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! =-----

Report this post to a moderator

Old Post 01-27-03 04:24 PM
Reply w/Quote Edit/Delete Message IP: Logged
Pat Colbeck
Guest




Registered: Not Yet
Location:
Country:
State:
Certifications:
Working on:

Total Posts: N/A
Re: No www needed in URL

Hi

The www of a url is just a convention to say this is a HTTP server
address. Most browsers now assume you want to connect to the HTTP port
of a machine when you type a url in unless you tell tehm otherwise so:

http://www.foobar.com is the same as www.foobar.com

Also www.foobar.com is just a text name that gets resolved to an IP
address so as long as both www.foobar.com and foobar.com both resolve to
the same IP address the

http://foobar.com or even just foobar.com will work too.

If you want a different port other than http you have to specify it
either at the end of the url with ort-number or perhaps if its
something like ftp then tell the browser its ftp by specifying

ftp://url

So mainly its a DNS thing. Back in the mists of time the Internet didnt
mean just HTTP so it made a lot of sence to have a URL indicate what
type of resource it refered to rember URL stands for Universal Resource
Locator not Web Server Address

Pat
--
______________________________
______________________________
____________

Pat Colbeck
Cisco CCIE :2305
E-Mail colbeck@bashq.org
______________________________
______________________________
____________

Report this post to a moderator

Old Post 01-27-03 06:23 PM
Reply w/Quote Edit/Delete Message IP: Logged
Tom Feldsten
Guest




Registered: Not Yet
Location:
Country:
State:
Certifications:
Working on:

Total Posts: N/A
Re: No www needed in URL

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.

-Tom-




"Pat Colbeck" <pcolbeck@bashq.org> wrote in message
news:87bs228pdu.fsf@dasterdly.esc.azlan.co.uk...
> Hi
>
> The www of a url is just a convention to say this is a HTTP server
> address. Most browsers now assume you want to connect to the HTTP port
> of a machine when you type a url in unless you tell tehm otherwise so:
>
> http://www.foobar.com is the same as www.foobar.com
>
> Also www.foobar.com is just a text name that gets resolved to an IP
> address so as long as both www.foobar.com and foobar.com both resolve to
> the same IP address the
>
> http://foobar.com or even just foobar.com will work too.
>
> If you want a different port other than http you have to specify it
> either at the end of the url with ort-number or perhaps if its
> something like ftp then tell the browser its ftp by specifying
>
> ftp://url
>
> So mainly its a DNS thing. Back in the mists of time the Internet didnt
> mean just HTTP so it made a lot of sence to have a URL indicate what
> type of resource it refered to rember URL stands for Universal Resource
> Locator not Web Server Address
>
> Pat
> --
> ______________________________
______________________________
____________
>
> Pat Colbeck
> Cisco CCIE :2305
> E-Mail colbeck@bashq.org
> ______________________________
______________________________
____________



Report this post to a moderator

Old Post 01-28-03 05:23 AM
Reply w/Quote Edit/Delete Message IP: Logged
Hansang Bae
Guest




Registered: Not Yet
Location:
Country:
State:
Certifications:
Working on:

Total Posts: N/A
Re: No www needed in URL

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

Report this post to a moderator

Old Post 01-29-03 01:24 AM
Reply w/Quote Edit/Delete Message IP: Logged
All times are GMT.
Post new thread   Post reply

Featured site: MCSE, MCSD, CompTIA, CCNA training videos



Forum Jump:
Rate This Thread:
Forum Rules:
Who Can Read The Forum? Any registered user or guest.
Who Can Post New Topics? Any registered user.
Who Can Post Replies? Any registered user.
Changes: Messages can be edited by their author.
Posts: HTML code is OFF. Smilies are ON. vB code is ON. [IMG] code is OFF.
 

ExamNotes forum archive


Powered by: vBulletin 2.2.8
Copyright ©2000, Jelsoft Enterprises Limited.

  Free Braindumps | mcse braindumps