Jazz
Jazz

Reputation: 659

I got a confusion about some URLs that I see on the Internet

Please tell me the difference between "someSite.com/something" and "something.someSite.com". Are they equivalent? As an amteur programmer, I know how to do the former. I think that I may need to learn network administration to be able to do the latter.

Upvotes: 0

Views: 55

Answers (2)

Tim Wißmann
Tim Wißmann

Reputation: 707

someSite.com/something is from technical point of view a file on the server, while something.someSite.com is a subdomain, which could link to a completely different webserver.

In most cases, the two variants does give you the identical content, because both of them are server-side linked to the same page.

Upvotes: 1

DAB
DAB

Reputation: 1343

It's usually referred to as a subdomain. This is the over simplified version:

You have a DNS server that converts the domain to an IP. That DNS server also handles subdomains. usually www is synonymous with the base domain itself. You can have more subdomains also, like sub.domain.something.someSite.com/something

You can make them resolve to the same or different IPs, depending on their purpose.

Even if they resolve to the same IP, the web server at that IP receives a request that includes the original domain name. So on that same IP, the server can give different responses for each domain. This is usually the case with small hosting packages, as they can have thousands of domains on a single IP and they all serve up different websites from different clients.

Upvotes: 1

Related Questions