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?
feedback
|
|
From RFC 3986:
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...) | |||||||||||||||||||
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
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.
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 confusionFrom Wikipedia:
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. URNsMy 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. | |||||||||||||||||
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 You could also identify the text as (Note that my example is adapted from Wikipedia) | |||||||
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. | |||
|
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! | ||||
|
feedback
|
|
Another example I like to use when thinking about URI's is the xmlns attribute of an XML document:
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. | ||||
|
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. | |||
|
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. | |||||
feedback
|
|
See this document. Specifically,
It's not an extremely clear term, really. | |||
|
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/). | ||||
|
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"." | |||
|
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. | |||||||||||||||||
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. | ||||
|
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:
With mod_rewrite enabled, you will also have these variables:
This might be the reason for some of the confusion. | |||
|
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 | ||||
|
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. | |||
|
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. | |||
|
feedback
|