A Uniform Resource Locator (short: URL) is a special kind of URI specifying the exact address at which a resource is reachable on the internet – the classic web address. Unlike the overarching URI term, a URL describes not just what is identified but also where and how it can be retrieved.
Structure of a URL
https://www.example.com:443/leistungen/seo?ref=newsletter#kontakt
- Protocol (
https://): determines how the connection is established - Domain (
www.example.com): identifies the server - Port (
:443, usually implicit): addresses the responsible service on the server - Path (
/leistungen/seo): the concrete location of the resource - Parameters (
?ref=newsletter): additional, mostly optional information - Anchor (
#kontakt): points to a specific spot within the page
Relative vs. absolute URLs
An absolute URL contains the complete address including protocol and domain (https://example.com/kontakt) and works independently of context. A relative URL contains only the path (/kontakt) – the browser fills in protocol and domain automatically from the current page. Internal links within a website are usually written relatively, external links always absolutely.
What makes an SEO-friendly URL
Not every technically working URL is also good for search engines and users:
- Readable instead of cryptic:
/leistungen/seoinstead of/index.php?id=482 - Short and stable: as few, permanent path segments as possible instead of deeply nested, frequently changing structures
- Consistent spelling: lowercase throughout, hyphens instead of underscores or spaces
- No duplicate content traps: one and the same page should not be reachable via several different URLs – a classic duplicate content pitfall, avoided via canonical URLs
If a URL nevertheless changes, say during a website relaunch, a permanent redirect (301) secures both the user journey and the search engine ranking already earned. More on this in our SEO services.
URL vs. URI vs. URN
Every URL is a URI, but not every URI is a URL: while a URL locates a resource (describing where and how it’s retrieved), a URN describes only a resource’s identity, independent of its current storage location – like an ISBN for a book.
Conclusion
The URL is the most visible interface between website structure and users, and simultaneously an often underestimated SEO factor. A well-thought-out, consistent URL structure pays off in both usability and search engine ranking. We take that into account from the start in every website project – more as part of our SEO services or directly in a no-obligation consultation.
Häufige Fragen
Is a URL the same as a domain?
example.com is the domain, https://example.com/leistungen/seo the complete URL. In addition to the domain, it contains the protocol, path and optionally further components such as parameters or an anchor.What's the difference between a URL and a URI?
What makes an SEO-friendly URL?
/leistungen/seo is easier to place for people and search engines than /index.php?id=482&cat=3. Consistent spelling (lowercase throughout, hyphens instead of underscores) and a stable structure that changes as rarely as possible also count.Why shouldn't URLs contain special characters or spaces?
%20), making URLs unreadable and error-prone, say when typing them off manually or copying them. Hyphens count as the readable, SEO-friendly alternative for separating words.What's the difference between a relative and an absolute URL?
https://example.com/kontakt). A relative URL, in contrast, relates to the current page and contains only the path (/kontakt) – the browser fills in protocol and domain automatically from the current page.