Uniform Resource Locator: Difference between revisions
Jump to navigation
Jump to search
imported>Chunbum Park No edit summary |
(fix URLs and sentence - unsure of intent though) |
||
(3 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{subpages}} | {{subpages}} | ||
Most commonly used to find resources on the [[World Wide Web]], but much more general in capability, a '''Uniform Resource Locator''' (URL). Their syntax is: | |||
A | <center><code><scheme>:<scheme-specific-part></code></center> | ||
A URL contains the name of the scheme being used (<scheme>) followed by a colon and then a string (the <scheme-specific-part>) whose interpretation depends on the scheme. <ref name=RFC1738>{{citation | |||
| author = Berners-Lee T, Masinter L, McCahill M | |||
| id = RFC 1738 | |||
| date = December 1994 | |||
| url =http://www.ietf.org/rfc/rfc1738.txt | |||
| title =Uniform Resource Locators (URL) }}</ref> | |||
==Representative schemes== | |||
==Primary WWW usage== | |||
Most often, URLs use a scheme of <code>http</code> to refer to the [[Hypertext Transfer Protocol]] as the scheme, and a fully qualified [[Domain Name System]] (DNS) name as the locator. | |||
This commonly refers to a link on the [[World Wide Web]]. URLs usually start with ''<nowiki>https://</nowiki>'', e.g. this page's URL is ''<nowiki>https://citizendium.org/wiki/Uniform_Resource_Locator</nowiki>''. In this example, the ''citizendium.org'' is a [[domain name system|DNS name]]. | |||
==Direct IP protocol request== | |||
<code><center><nowiki>//<user>:<password>@<host>:<port>/<url-path></nowiki></center></code> | |||
==References== | |||
{{reflist}} |
Latest revision as of 06:10, 3 June 2022
Most commonly used to find resources on the World Wide Web, but much more general in capability, a Uniform Resource Locator (URL). Their syntax is:
<scheme>:<scheme-specific-part>
A URL contains the name of the scheme being used (<scheme>) followed by a colon and then a string (the <scheme-specific-part>) whose interpretation depends on the scheme. [1]
Representative schemes
Primary WWW usage
Most often, URLs use a scheme of http
to refer to the Hypertext Transfer Protocol as the scheme, and a fully qualified Domain Name System (DNS) name as the locator.
This commonly refers to a link on the World Wide Web. URLs usually start with https://, e.g. this page's URL is https://citizendium.org/wiki/Uniform_Resource_Locator. In this example, the citizendium.org is a DNS name.
Direct IP protocol request
//<user>:<password>@<host>:<port>/<url-path>
References
- ↑ Berners-Lee T, Masinter L, McCahill M (December 1994), Uniform Resource Locators (URL), RFC 1738