Answers for "URL vs URI"

6

urn vs url vs uri

Firstly, know that:
- URLs are a type of URI
- URNs are a type of URI
- URCs are a type of URI
- etc..

---
URI 
 - a standard for identifying documents using a short string of numbers, 
letters, and symbols.
 - defined by https://datatracker.ietf.org/doc/html/rfc3986
 
Examples:
  - URLs
  - URNs
  - URCs
  - ...
 
--- 
URL
 - Contains information about how to fetch a resource from its location.
 - Always start with the protocol
 - Can be relative

Examples:
 - http://example.com/mypage.html
 - file:///home/user/file.txt
 - tel:1-888-555-5555
 
--- 
URN
 - Identifies a resource by a unique and persistent name, but doesn't necessarily tell you how to locate it on the internet. 
 - It usually starts with the prefix urn:

Examples:
 - urn:isbn:0451450523 to identify a book by its ISBN number.
 - urn:uuid:6e8bc430-9c3a-11d9-9669-0800200c9a66 a globally unique identifier
 
--- 
URC
 - Points to meta data about a document rather than to the document itself. 
An example of a URC is one that points to the HTML source code of a page

Examples:
 - like: view-source:http://example.com/
Posted by: Guest on August-07-2021
6

what is uri

URI stands for Uniform Resource Identifier
The purpose of URI is to locate
a resource on the server 
hosting the web service.

A URI format is:
<protocol>://<servicename>/<ResourceType>/<ResourceID>
Posted by: Guest on January-14-2021
11

URL vs URI

URI stands for Uniform Resource Identifier. It is a string of
characters designed for exact identification of resources
and extensibility by the URI scheme. 
The purpose of a URI is to locate a resource(s) on the server hosting 
of the web service.

A URI’s format is <protocol>://<servicename>/<ResourceType>/<ResourceID>.

A URL is the most common type of (URI). URLs are essential to navigating the 
internet.RLs consist of multiple parts -- including a protocol and domain name 
that tell a web browser how and where to retrieve a resource.
Posted by: Guest on December-04-2020

Browse Popular Code Answers by Language