People talk about URLs and URIs as if they're different things, but they look the same to the naked eye. What's the difference between the two?

link|improve this question

9  
URL is more specific than URI. – Mk12 Dec 31 '09 at 7:09
feedback

17 Answers

up vote 160 down vote accepted

From RFC 3986:

A URI can be further classified as a locator, a name, or both. The term "Uniform Resource Locator" (URL) refers to the subset of URIs that, in addition to identifying a resource, provide a means of locating the resource by describing its primary access mechanism (e.g., its network "location"). The term "Uniform Resource Name" (URN) has been used historically to refer to both URIs under the "urn" scheme [RFC2141], which are required to remain globally unique and persistent even when the resource ceases to exist or becomes unavailable, and to any other URI with the properties of a name.

So any URL is a URI, but some URIs aren't URLs, they're URNs instead. Except the ones which are both URNs and URLs.

Clear as mud?

EDIT: Note also Roger Pate's clearer answer. (I can't delete this answer as it's accepted, nor do I think it's worth just copying his text into here, but please read it...)

link|improve this answer
9  
I've seen more transparent liquid soil than this, but not much. ;) – Chris Charabaruk Oct 6 '08 at 21:33
2  
Only URIs with the urn: scheme are URNs. A URI could be a classic URL, a URN, or just a URI that doesn't start with "urn:" and doesn't refer to a location of a resource. – Mark Cidade Oct 6 '08 at 21:38
One example are InfoPath URNs, which are important i.e. in Sharepoint Workflows: urn:schemas-microsoft-com:office:infopath:blogsample:-myXSD-2004-05-19T20-48-18 – Michael Stum Oct 6 '08 at 21:49
4  
Note that RFC 2396 has been obsoleted by RFC 3986 a long time ago (but that doesn't change the facts...) – Julian Reschke Mar 11 '10 at 12:20
3  
Like, all thumbs are fingers but not all fingers are thumbs? – prc322 Jan 30 at 9:15
feedback

URIs identify and URLs locate; however, locations are also identifications, so every URL is also a URI, but there are URIs which are not URLs.

Examples

  • Roger Pate

This is my name, which is identification. It is like a URI, but cannot be a URL, as it tells you nothing about my location or how to contact me. In this case it also happens to identify at least 5 other people in the USA alone.

  • 4914 West Bay Street, Nassau, Bahamas

This is a location, which is identification for that physical location. It is like both a URL and URI (since all URLs are URIs), and also identifies me indirectly as "resident of..". In this case it uniquely identifies me, but that would change if I get a roommate.

I say "like" because these examples do not follow the required syntax.

Popular confusion

From Wikipedia:

In computing, a Uniform Resource Locator (URL) is a subset of the Uniform Resource Identifier (URI) that specifies where an identified resource is available and the mechanism for retrieving it. In popular usage and in many technical documents and verbal discussions it is often incorrectly used as a synonym for URI, ... [emphasis mine]

Because of this common confusion, many products and documentation incorrectly use one term instead of the other, assign their own distinction, or use them synonymously.

URNs

My name, Roger Pate, could be like a URN, except those are much more regulated and intended to be unique across both space and time.

Because I currently share this name with other people, it's not globally unique and would not be appropriate as a URN. However, even if no other family used this name, I'm named after my paternal grandfather, so it still wouldn't be unique across time. And even if that wasn't the case, the possibility of naming my descendants after me make this unsuitable as a URN.

URNs are different from URLs in this rigid uniqueness constraint, even though they both share the syntax of URIs.

link|improve this answer
That is great explanation thanks :) – Sarfraz Dec 31 '09 at 13:09
Well said!. ----------- – Rev316 Jan 5 '10 at 23:03
42  
even my mother would get it now :D – migajek Jun 21 '10 at 21:09
26  
For those who don't know: "You do not really understand something unless you can explain it to your grandmother." — Albert Einstein – George Bailey May 6 '11 at 21:11
1  
This should be the accepted answer. The other one just quotes the w3c, and just adds to the confusion rather than attempting to explain – Munim Feb 17 at 8:53
show 3 more comments
feedback

In summary: a URI identifies, a URL identifies and locates.

Consider a specific edition of Shakespeare's play Romeo and Juliet, of which you have a digital copy on your home network.

You could identify the text as urn:isbn:0-486-27557-4.
That would be a URI, but more specifically a URN because it names the text.

You could also identify the text as file://hostname/sharename/RomeoAndJuliet.pdf.
That would also be a URI, but more specifically a URL because it locates the text.

(Note that my example is adapted from Wikipedia)

link|improve this answer
3  
It's helpful to note the actual URN (to see how it compares to a URL): urn:isbn:0-486-27557-4 – Michael Brewer-Davis Dec 31 '09 at 18:15
@Michael - It is my understanding that ISBN 0486275574 also names the text and thus qualify as a URN. I choose a format that I believed would be more familiar to readers. – Greg Dec 31 '09 at 18:47
feedback

URI => http://en.wikipedia.org/wiki/Uniform_Resource_Identifier

URL's are a subset of URI's (which also contain URNs).

Basically, a URI is a general identifier, where a URL specifies a location and a URN specifies a name.

link|improve this answer
feedback

This is one of the most confusing and possibly irrelevant topics I've encountered as a web professional.

As I understand it, a URI is a description of something, following an accepted format, that can define both or either the unique name (identification) of something and its location.

There are two basic subsets - URLs, which define location (especially to a browser trying to look up a webpage) and URNs, which define the unique name of something.

I tend to think of URNs as being similar to GUIDs. They are simply a standardized methodology for providing unique names for things. As in the namespace declarative that uses a company's name - it's not like there is a resource sitting on a server somewhere to correspond to that line of text - it simply uniquely identifies something.

I also tend to completely avoid the term URI and discuss things only in terms of URL or URN as appropriate, because it causes so much confusion. The question we should really try answering for people isn't so much the semantics, but how to identify when encountering the terms whether or not there is any practical difference in them that will change the approach to a programming situation. For example, if someone corrects me in conversation and says, "oh, that's not a URL it's a URI" I know they're full of it. If someone says "we're using a URN to define the resource" I'm more likely to understand we are only naming it uniquely, not locating it on a server.

If I'm way off base - please let me know!

link|improve this answer
feedback

Another example I like to use when thinking about URI's is the xmlns attribute of an XML document:

<rooElement xmlns:myPrefix="com.mycompany.mynode">
    <myPrefix:aNode>some text</myPrefix:aNode>
</rootElement>

In this case com.mycompany.mynode would be a URI that uniquely identifies the "myPrefix" namespace for all of the elements that use it within my XML document. Is is not a URL because it is only used to identify, not to locate something per se.

link|improve this answer
feedback

URI is kind of the super class of URL's and URN's. Wikipedia has a fine article about them with links to the right set of RFCs.

link|improve this answer
feedback

They're the same thing. A URI is a generalization of a URL. Originally, URIs were planned to be divided into URLs (addresses) and URNs (names) but then there was little difference between a URL and URI and http URIs were used as namespaces even though they didn't actually locate any resources.

link|improve this answer
I thought it was the other way around. A URL refers to a concrete object, and a URI can refer to that or a concept or anything else. – Chris Charabaruk Oct 6 '08 at 21:30
A URL locates a resource and is a kind of URI, which identifies a resource. – Mark Cidade Oct 6 '08 at 21:33
feedback

See this document. Specifically,

a URL is a type of URI that identifies a resource via a representation of its primary access mechanism (e.g., its network "location"), rather than by some other attributes it may have.

It's not an extremely clear term, really.

link|improve this answer
thanks that link is helpful too :) – Sarfraz Jan 26 '10 at 8:20
feedback

Due to difficulties to clearly distinguish between URI and URL, as far as I remember W3C does not make a difference any longer between URI and URL (http://www.w3.org/Addressing/).

link|improve this answer
that is nice info too :) – Sarfraz Jan 2 '10 at 5:31
feedback

Wikipedia will give all the information you need here... http://en.wikipedia.org/wiki/URI

"A URL is a URI that, in addition to identifying a resource, provides means of acting upon or obtaining a representation of the resource by describing its primary access mechanism or network "location"."

link|improve this answer
feedback

These are some very well-written but long-winded answers.

URL - http://example.com/some/page.html

URI - /some/page.html

Put simply, URL is the full way to indentify any resource anywhere and can have different protocols like FTP, HTTP, SCP, etc.

URI is a resource on the current domain, so it needs less information to be found.

link|improve this answer
2  
This answer may be over-simplified but look at the context of his question. It will be more helpful to him that waffling on about XML namespaces! – Phil Sturgeon Dec 31 '09 at 12:18
7  
This answer is not only wrong but actively misleading. Both examples are URLs. And since every URL is also a URI, this means that both examples are URIs. For the purpose of demonstrating the difference between URIs and URLs, this is totally useless. – Jörg W Mittag Dec 31 '09 at 12:40
@Jorg: totally agreed :) – Sarfraz Jan 2 '10 at 7:29
3  
This is the difference as far as CodeIgniter is concerned. In every instance they use the word URL or URI this is the difference they are talking about. Therefore in the grand-scheme of the web, it is not 100% correct but in the scope of the OP's question (the difference in CodeIgniter), this answer is perfectly correct. – Phil Sturgeon Jan 11 '10 at 11:13
@Phil Sturgeon - agreed, for the purpose of this question, this is how CI distinguishes between URL and URI. – Matt Jan 11 '10 at 11:20
show 1 more comment
feedback

A URI identifies a resource either by location, or a name, or both. More often than not, most of us use URIs that defines a location to a resource. The fact that a URI can identify a resources by both name and location has lead to a lot of the confusion in my opinion. A URI has two specializations known as URL and URN.

A URL is a specialization of URI that defines the network location of a specific resource. Unlike a URN, the URL defines how the resource can be obtained. We use URLs every day in the form of http://stackoverflow.com, etc. But a URL doesn’t have to be an HTTP URL, it can be ftp://xyz.com, etc.

For more information on URI you can use the following link, http://www.eie.polyu.edu.hk/~entchsun/EIE423Lab/wiurl.html.

link|improve this answer
thanks for those nice links... – Sarfraz Jan 26 '10 at 8:21
feedback

Although the terms URI and URL are strictly defined, many use the terms for other things than they are defined for.

Let’s take Apache for example. If http://example.com/foo is requested from an Apache server, you’ll have the following environment variables set:

  • REDIRECT_URL: /foo
  • REQUEST_URI: /foo

With mod_rewrite enabled, you will also have these variables:

  • REDIRECT_SCRIPT_URL: /foo
  • REDIRECT_SCRIPT_URI: http://example.com/foo
  • SCRIPT_URL: /foo
  • SCRIPT_URI: http://example.com/foo

This might be the reason for some of the confusion.

link|improve this answer
feedback

I was wondering about the same thing and I've found this: http://docs.kohanaphp.com/helpers/url.

You can see a clear example using the url::current() method. If you have this URL: http://localhost/kohana/index.php/welcome/home.html?query=string then using url:current() gives you the URI which, according to the documentation, is: welcome/home

link|improve this answer
feedback

URIs came about from the need to identify resources on the Web, and other Internet resources such as electronic mailboxes in a uniform and coherent way. So, one can introduce a new type of widget: URIs to identify widget resources or use tel: URIs to have web links cause telephone calls to be made when invoked.

Some URIs provide information to locate a resource (such as a DNS host name and a path on that machine), while some are used as pure resource names. The URL is reserved for identifiers that are resource locators, including 'http' URLs such as http://stackoverflow.com, which identifies the web page at the given path on the host. Another example is 'mailto' URLs, such as mailto:fred@mail.org, which identifies the mailbox at the given address.

URNs are URIs that are used as pure resource names rather than locators. For example, the URI: mid:0E4FC272-5C02-11D9-B115-000A95B55BC8@stackoverflow.com is a URN that identifies the email message containing it in its 'Message-Id' field. The URI serves to distinguish that message from any other email message. But it does not itself provide the message's address in any store.

link|improve this answer
feedback

The answer is ambiguous. In Java it is frequently used in this way:

An Uniform Resource Locator (URL) is the term used to identify an Internet resource including the scheme( http, https, ftp, news, etc.). For instance What's the difference between a URI and a URL?

An Uniform Resource Identifier (URI) is used to identify a single document in the Web Server: For instance /questions/176264/whats-the-difference-between-a-uri-and-a-url

In Java servlets, the URI frequently refers to the document without the web application context.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.