What is the difference between a URI, a URL and a URN?

前端 未结 30 1306
小蘑菇
小蘑菇 2020-11-22 02:18

People talk about URLs, URIs, and URNs as if they\'re different things, but they look the same to the naked eye.

W

30条回答
  •  醉酒成梦
    2020-11-22 02:57

    As per RFC 3986, URIs are comprised of the following pieces:

    scheme://authority/path?query
    

    The URI describes the protocol for accessing a resource (path) or application (query) on a server (authority).

    Enter image description here

    All the URLs are URIs, and all the URNs are URIs, but all the URIs are not URLs.

    Please refer for more details:

    Wikipedia

提交回复
热议问题