URLs – What is an URL?

URLs – What is an URL? cover image
  1. Home
  2. Basics
  3. URLs – What is an URL?

URL stands for Uniform Resource Locator, which means it is a uniform (same throughout the world) way to locate a resource (file or document) on the Internet. The URL specifies the address of a file and every file on the Internet has a unique address. Web software, such as your browser, use the URL to retrieve a file from the computer on which it resides.

The actual URL is a set of four numbers separated by periods. An example of this would be 202.147.23.8 but as these are difficult for humans to use, addresses are represented in alphanumeric form that is more descriptive and easy to remember.

Sponsored Links

Thus, the URL of my site which is URL 209.164.80.192 can also be written as www.simplygraphix.com. The Internet Domain Name System translates the alphanumerical address to numeric.

Format of a URL:
Protocol://site address/path/filename

For example, the URL of my company site is:
http://www.simplygraphix.com/
and a typical page on this site would be:
http://www.simplygraphix.com/portfolio/4.html

The above URL consist of:

Protocols

In addition to the http protocol (mentioned above), there are a few other protocols on the Internet.

Site Address

The site address consists of the host computer name, the domain name and the domain type. The domain name should be descriptive for easy comprehension and is usually the name of the organization or company.
There are various domain types. Some of them are listed below:

com: specifies commercial entities
net: highlights networks or network providers
org: organizations (usually non-profit)
edu: colleges and universities (education providers)
gov: government agencies
mil: military entities of the United States of America

For countries other than the U.S.A., the URL can be longer as in:
http://www.bioinfo.ernet.in

The general format of such URLs is:
machine name.domain name.domain type.country code.

This represents a more localized domain name. The country code is a two-letter extension standardized by the International Standards Organization as ISO 3166. Some country codes are given below:
in: India
de: Germany
ca: Canada
jp: Japan
uk: United Kingdom

Domain types can also be different for different countries. For example, an educational site can have the domain name www.school.ac.uk in the United Kingdom. Thus ac (academic) is used instead of edu. Similarly com is represented as co for Indian domain names.

Path Name

Path name specifies the hierarchic location of the said file on the computer. For instance, in http://www.simplygraphix.com/portfolio/4.html the file 4.html is located in portfolio subdirectory under the server root directory.

Port

Browsers communicate with the server using entry points called ports. Associated with each protocol is a default port number, such as HTTP defaults to port 80.
The server administrator can configure the server to handle http requests at a different port. In such cases, the port number has to be supplied as a part of the URL. The port number is placed at the end of the URL after a colon.

www.example.com:8080

HTML Anchors

With HTML you can specify anchors within files. These anchors are end points to hyperlinks placed either in the same file or some other files. Anchors are placed to link to specific locations in a file. They can be a part of the URL and are represented with a hash symbol (#) followed by the link name.

www.example.com/some-file.html#some-location

Basics Web Development