Uniform resource locator

A uniform resource locator (URL) (commonly informally referred to as a web address)[1] is a reference to a web resource that specifies its location on a computer network and a mechanism for retrieving it. A URL is a specific type of uniform resource identifier (URI),[2] although many people use the two terms interchangeably.[3] A URL implies the means to access an indicated resource, which is not true of every URI.[4][3][5] URLs occur most commonly to reference web pages (http), but are also used for file transfer (ftp), email (mailto), database access (JDBC), and many other applications.
Most web browsers display the URL of a web page above the page in an address bar. A typical URL could have the form http://www.example.com/index.html
, which indicates a protocol (http
), a hostname (www.example.com
), and a file name (index.html
).
History
The Uniform Resource Locator was standardized in 1994[6] by Tim Berners-Lee, the inventor of the World Wide Web, and the URI working group of the Internet Engineering Task Force (IETF) as an outcome of collaboration started at the IETF Living Documents "Birds of a Feather" session in 1992.[7][8] The format combines the pre-existing system of domain names (created in 1985) with file path syntax, where slashes are used to separate directory and file names. Conventions already existed where server names could be prepended to complete file paths, preceded by a double slash (//
).[9]
Berners-Lee later expressed regret at the use of dots to separate the parts of the domain name within URIs, wishing he had used slashes throughout,[9] and also said that, given the colon following the first component of a URI, the two slashes before the domain name were unnecessary.[10]
Syntax
Every HTTP URL conforms to the syntax of a generic URI. A generic URI is of the form:
scheme:[//[user:password@]domain[:port]][/]path[?query][#fragment]
- The scheme consists of a sequence of characters beginning with a letter and followed by any combination of letters, digits, plus (
+
), period (.
), or hyphen (-
). Although schemes are case-insensitive, the canonical form is lowercase and documents that specify schemes must do so with lowercase letters. It is followed by a colon (:
). Examples of popular schemes includehttp
,ftp
,mailto
,file
, anddata
. URI schemes should be registered with the Internet Assigned Numbers Authority (IANA), although non-registered schemes are used in practice.[11] - The hierarchical part, which contains:
- An optional authority part, comprising:
- Two slashes (
//
) - An optional authentication section of a user name and password, separated by a colon, followed by an at symbol (
@
) - A hostname such as a domain name or IP address; IPv6 addresses must be enclosed in brackets (
[ ]
) - An optional port number, separated from the hostname by a colon
- Two slashes (
- A path, which contains data, usually organized in hierarchical form, that appears as a sequence of segments separated by slashes. Such a sequence may resemble or map exactly to a file system path, but does not always imply a relation to one.[4] The path must begin with a single slash (
/
) if an authority part was present, and may also if one was not, but must not begin with a double slash.
- An optional authority part, comprising:
Query delimiter | Example |
---|---|
Ampersand (& ) |
key1=value1&key2=value2 |
Semicolon (; )[12] |
key1=value1;key2=value2 |
- An optional query, separated from the preceding part by a question mark (
?
), containing a query string of non-hierarchical data. Its syntax is not well defined, but by convention is most often a sequence of attribute–value pairs separated by a delimiter. - An optional fragment, separated from the preceding part by a hash (
#
). The fragment contains a fragment identifier providing direction to a secondary resource, such as a section heading in an article identified by the remainder of the URI. When the primary resource is an HTML document, the fragment is often anid
attribute of a specific element, and web browsers will make sure this element is visible.
A web browser will usually dereference a URL by performing an HTTP request to the specified host, by default on port number 80. URLs using the https
scheme require that requests and responses will be made over a secure connection to the website.
Internationalized URL
Internet users are distributed throughout the world using a wide variety of languages and alphabets. Users expect to be able to create URLs in their own local alphabets.
An internationalized resource identifier (IRI) is a form of URL that includes Unicode characters. All modern browsers support IRIs. The parts of the URL requiring special treatment for different alphabets are the domain name and path.[13][14]
The domain name in the IRI is known as an internationalized domain name (IDN). Web and Internet software automatically convert the domain name into punycode usable by the Domain Name System; for example, the Chinese URL http://例子.卷筒纸
becomes http://xn--fsqu00a.xn--3lr804guic/
. The xn--
indicates that the character was not originally ASCII.[15]
The URL path name can also be specified by the user in the local alphabet. If not already encoded, it is converted to Unicode, and any characters not part of the basic URL character set are converted to English letters using percent-encoding; for example, the Japanese URL http://example.com/引き割り.html
becomes http://example.com/%E5%BC%95%E3%81%8D%E5%89%B2%E3%82%8A.html
. The target computer decodes the address and displays the page.[13]
See also
Notes
References
- ^ http://www.collinsdictionary.com/dictionary/english/web-address
- ^ Berners-Lee, Tim; Fielding, Roy; Masinter, Larry (January 2005). "Uniform Resource Identifiers (URI): Generic Syntax". Internet Engineering Task Force. Retrieved 31 August 2015.
- ^ a b RFC 3305
- ^ a b Berners-Lee, Tim; Fielding, Roy; Masinter, Larry (August 1998). "Uniform Resource Identifiers (URI): Generic Syntax". Internet Engineering Task Force. Retrieved 31 August 2015.
- ^ Skeet, Jon (6 Oct 2008). "What's the difference between a URI and a URL?". StackOverflow. Retrieved 4 September 2014.
- ^ RFC 1738 Uniform Resource Locators (URL). This RFC is now obsolete. It has been superseded by a newer RFC (see the RFC Index)
- ^ "Living Documents BoF Minutes". W3.org. Retrieved 2011-12-26.
- ^ "URL Specification". Retrieved 2011-12-26.
- ^ a b Berners-Lee, Tim. "Frequently asked questions by the press". Retrieved 2010-02-03.
- ^ "Technology | Berners-Lee 'sorry' for slashes". BBC News. 2009-10-14. Retrieved 2010-02-14.
- ^ RFC 7595 describes the procedures for registering new URI schemes.
- ^ RFC 1866, section 8.2.1, by Tim Berners-Lee in 1995, encourages CGI authors to support ';' in addition to '&'.
- ^ a b "An Introduction to Multilingual Web Addresses". Retrieved 11 January 2015.
- ^ "What is Happening with International URLs". Retrieved 11 January 2015.
- ^ Internet Assigned Numbers Authority (14 February 2003). "Completion of IANA Selection of IDNA Prefix". IETF-Announce mailing list. Retrieved 3 September 2015.