URL

A URL (Uniform Resource Locator) is the address you type into a browser to visit a website—like https://www.example.com/page. URLs are how you navigate the web, telling your browser exactly which resource to retrieve and where to find it. While people often use "URL" and "domain name" interchangeably, they're different: a domain name is one component of a URL, which also includes the protocol, path, and other elements that specify exactly what you want to access.

Last updated: November 202510 min read
Technical

What Is a URL?

A URL is a complete web address that identifies a specific resource on the internet. URL stands for Uniform Resource Locator—"uniform" because URLs follow a standardized format, "resource" because they point to files, pages, or data, and "locator" because they specify where that resource lives.

Every time you:

  • Click a link
  • Type an address in your browser
  • Share a webpage
  • Bookmark a site

...you're using URLs.

URL examples:

  • https://www.google.com
  • https://en.wikipedia.org/wiki/Internet
  • https://shop.example.com/products/shoes?color=blue
  • ftp://files.example.com/document.pdf

URLs can point to web pages, images, videos, documents, API endpoints, or any other resource accessible via the internet.

What Does URL Stand For?

URL stands for Uniform Resource Locator:

  • Uniform: Standardized format that works the same way everywhere
  • Resource: Any accessible item—webpage, file, image, video, data
  • Locator: Specifies the exact location and how to access it

The term was coined by Tim Berners-Lee, inventor of the World Wide Web, in 1994. URLs were designed as a universal addressing system for web resources.

Related terms you might encounter:

  • URI (Uniform Resource Identifier): Broader category that includes URLs. All URLs are URIs, but not all URIs are URLs.
  • URN (Uniform Resource Name): Identifies a resource by name rather than location. Less commonly used.

For everyday purposes, URL is the term you need.

URL Structure: Breaking Down the Parts

A complete URL contains several components:

https://www.example.com:443/products/shoes?color=blue&size=10#reviews
ComponentExamplePurpose
Protocolhttps://How to access the resource
Subdomainwww.Section of the domain
Domain nameexample.comThe website's address
Port:443Connection endpoint (usually hidden)
Path/products/shoesLocation within the site
Query string?color=blue&size=10Parameters passed to the page
Fragment#reviewsSpecific section on the page

Let's examine each:

Protocol (scheme):

https:// or http:// tells the browser which protocol to use. HTTPS is secure (encrypted); HTTP is not. Other protocols include ftp:// for file transfers and mailto: for email links.

Subdomain:

www. is the most common subdomain, but sites use others like blog.example.com, shop.example.com, or app.example.com to organize different sections.

Domain name:

example.com is the human-readable address that maps to the server's IP address via DNS. This is the core identifier you register and own.

Port:

:443 (HTTPS) or :80 (HTTP) specifies which port to connect to. Standard ports are hidden by browsers—you only see them for non-standard configurations.

Path:

/products/shoes indicates the specific page or resource location within the website, like folders on a computer.

Query string:

?color=blue&size=10 passes information to the page. Everything after ? consists of parameter-value pairs separated by &.

Fragment (anchor):

#reviews jumps to a specific section on the page. The browser scrolls to the element with that ID.

URL vs. Domain Name

People often confuse URLs and domain names, but they're distinct:

AspectDomain NameURL
Exampleexample.comhttps://www.example.com/page
What it isWebsite's core addressComplete resource location
ComponentsJust the domainProtocol + domain + path + more
What you registerYesNo (paths are created by you)
UniquenessGlobally uniqueUnique within the domain

The relationship:

  • A domain name is the foundational address you register
  • URLs are built on top of your domain name
  • One domain can have unlimited URLs (each page, image, file has its own URL)

Example:

If you own mybusiness.com, you might create URLs like:

  • https://mybusiness.com (homepage)
  • https://mybusiness.com/about (about page)
  • https://mybusiness.com/products/widget (product page)
  • https://blog.mybusiness.com/post-title (blog post on subdomain)

All these URLs use the same domain name but point to different resources.

What Is a Website URL?

A website URL is specifically a URL that points to a webpage. Most URLs you encounter daily are website URLs—addresses that load pages in your browser.

Website URL characteristics:

  • Uses http:// or https:// protocol
  • Contains a domain name
  • May include path, query parameters, and fragments
  • Returns HTML content your browser renders as a webpage

Non-website URLs:

Not all URLs point to websites:

  • ftp://files.example.com/doc.pdf — file transfer
  • mailto:contact@example.com — email link
  • tel:+15551234567 — phone link
  • file:///C:/Users/doc.txt — local file

For most purposes, when people say "URL," they mean website URLs.

A URL link (or hyperlink) is a clickable element that takes you to a URL when clicked. Links connect web pages to each other, creating the interconnected "web" of the World Wide Web.

How links work:

<a href="https://example.com/page">Click here</a>

The URL (https://example.com/page) is the destination. The visible text ("Click here") is the anchor text. Clicking the anchor text navigates to the URL.

Types of links:

Absolute URLs: Complete addresses including protocol and domain.

  • https://example.com/page

Relative URLs: Paths relative to the current page's location.

  • /page (same domain, root path)
  • ../other-page (parent directory)
  • page.html (same directory)

Links can point to:

  • Other pages on the same site (internal links)
  • Pages on different sites (external links)
  • Specific sections of pages (anchor links)
  • Files for download
  • Email addresses, phone numbers, etc.

What Is a URL Address?

"URL address" is redundant—the "L" in URL already stands for "Locator" (address). But people commonly use this phrase to mean a URL.

When someone asks for your "URL address" or "website URL address," they want the complete web address:

  • https://yoursite.com (homepage)
  • Or a specific page URL if context requires it

Related terms people use interchangeably:

  • URL
  • Web address
  • Website address
  • Link
  • Site address

All typically mean the same thing: the URL you type or click to visit a website.

How URLs Work

When you enter a URL, here's what happens:

  1. Browser parses the URL

    • Extracts protocol, domain, path, and other components
  2. DNS lookup

    • Browser asks DNS servers to translate the domain name to an IP address
  3. Connection established

    • Browser connects to the server at that IP address using the specified protocol
  4. Request sent

    • Browser requests the specific resource (path) from the server
  5. Server responds

    • Server sends back the requested resource (HTML, image, file, etc.)
  6. Browser renders

    • For web pages, browser displays the content
    • For files, browser downloads or displays them

This entire process typically takes milliseconds for fast connections and optimized websites.

URL Best Practices

If you're creating URLs for your website, follow these guidelines:

Keep URLs readable:

  • Good: /products/running-shoes
  • Bad: /p?id=12847&cat=3

Use hyphens, not underscores:

  • Good: /blog/my-post-title
  • Bad: /blog/my_post_title

Keep URLs lowercase:

  • Some servers treat /Page and /page as different URLs
  • Stick to lowercase to avoid confusion

Keep URLs short but descriptive:

  • Include enough information to indicate content
  • Avoid unnecessary words and parameters

Use HTTPS:

  • Always use https:// for security
  • HTTPS is now expected; HTTP triggers browser warnings

Make URLs permanent:

  • Changing URLs breaks existing links and bookmarks
  • If you must change, set up redirects from old URLs

Include keywords naturally:

  • URLs are a minor SEO factor
  • Don't keyword-stuff, but relevant terms help

URL Shorteners

URL shorteners create brief aliases for long URLs:

Original: https://example.com/products/category/subcategory/item-name?ref=campaign&source=email

Shortened: https://bit.ly/3xYz123

Common URL shorteners:

  • Bitly (bit.ly)
  • TinyURL (tinyurl.com)
  • Rebrandly (rebrand.ly)
  • Short.io

Why use shorteners:

  • Easier to share verbally or in print
  • Fit character limits (social media, SMS)
  • Track click analytics
  • Create branded short links

Cautions:

  • Shortened URLs hide the destination (security concern)
  • If the shortener service closes, links break
  • Some platforms block or flag shortened URLs

URL Encoding

URLs can only contain certain characters. Special characters must be "encoded" using percent-encoding:

CharacterEncoded
Space%20 or +
&%26
=%3D
/%2F
?%3F
#%23

Example:

The search query "what is a URL?" becomes:

https://google.com/search?q=what%20is%20a%20URL%3F

Browsers handle encoding automatically—you don't usually need to think about it. But if you're building URLs programmatically, use proper encoding functions.

Finding and Copying URLs

In web browsers:

  • URLs appear in the address bar at the top
  • Click the address bar to select the full URL
  • Right-click a link and select "Copy link address" for link URLs

On mobile:

  • Tap the address bar to see and copy the URL
  • Long-press links to copy their destination URL

Sharing URLs:

  • Copy from address bar
  • Use browser's share function
  • Right-click and copy link for specific links on a page

Frequently Asked Questions

What is a URL?

A URL (Uniform Resource Locator) is a complete web address that identifies a specific resource on the internet. It includes the protocol (like https://), domain name, and often a path to a specific page or file. URLs are what you type in your browser or click to visit websites.

What does URL stand for?

URL stands for Uniform Resource Locator. "Uniform" means standardized format, "Resource" refers to any accessible item (page, file, image), and "Locator" means it specifies where to find that resource.

What is a URL link?

A URL link (or hyperlink) is a clickable element on a webpage that navigates to a URL when clicked. The URL is the destination address; the link is the clickable text or image that takes you there.

What is a website URL?

A website URL is a URL that points to a webpage, using the http:// or https:// protocol. It's the address you enter in your browser to visit a specific page on the web.

What is the difference between a URL and a domain name?

A domain name (like example.com) is just one part of a URL. A complete URL includes the protocol (https://), possibly a subdomain (www.), the domain name, and often a path (/page). You register domain names; URLs are addresses built using your domain.

What is a URL address?

"URL address" is a common (though technically redundant) way to refer to a URL. When someone asks for your URL address, they want the complete web address of your site or page—like https://yoursite.com.

How do I find a website's URL?

Look at your browser's address bar at the top of the window—the text displayed there is the current page's URL. To get the URL of a link without clicking it, right-click the link and select "Copy link address."

What is a URL example?

https://www.example.com/products/shoes?color=blue is a complete URL containing protocol (https), subdomain (www), domain (example.com), path (/products/shoes), and query parameters (?color=blue).

More Terms

Quick Tools