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

前端 未结 30 1271
小蘑菇
小蘑菇 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 03:00

    These are some very well-written but long-winded answers. Here is the difference as far as CodeIgniter is concerned:

    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.

    In every instance that CodeIgniter uses the word URL or URI this is the difference they are talking about, though in the grand-scheme of the web, it is not 100% correct.

提交回复
热议问题