Work

URL

standard · 1994

Computing Networking Information Systems

The URL (Uniform Resource Locator) is a reference to a web resource that specifies its location and how to retrieve it. Designed by Tim Berners-Lee as part of the World Wide Web, URLs provide the addressing system that makes the Web navigable—every web page, image, video, and file has a unique URL.

Origins

When Tim Berners-Lee created the World Wide Web at CERN, he needed a universal way to identify and locate resources. The URL system he designed combines three pieces of information[1]:

  1. Protocol: How to access the resource (e.g., http:// or https://)
  2. Host: Where the resource lives (e.g., www.example.com)
  3. Path: Which specific resource to retrieve (e.g., /page.html)

This simple structure—protocol://host/path—became the foundation of web addressing.

Anatomy of a URL

A complete URL can contain several components:

https://www.example.com:443/path/page.html?query=value#section

Evolution: From URL to URI

The URL concept evolved into a broader framework[2]:

In practice, “URL” remains the commonly used term for web addresses.

Design Principles

URLs were designed with several key principles:

Impact

The URL transformed how we reference information. Before URLs, locating a networked resource required knowing server names, protocols, and file paths. URLs unified this into a single, shareable string[3].

Today, URLs are embedded in everything from business cards to billboards. They’re so fundamental to modern life that “URL” has entered everyday vocabulary—people “share links” and “copy URLs” without thinking about the underlying technology.

The URL system handles billions of requests daily, serving as the addressing infrastructure for the entire Web.


Sources

  1. Wikipedia. “URL.” Comprehensive overview of URL syntax and history.
  2. IETF. “RFC 3986 - URI Generic Syntax.” The formal URI specification, superseding earlier URL standards.
  3. WHATWG. “URL Standard.” The living standard for URL parsing and manipulation.