docs.rodeo

MDN Web Docs mirror

URI schemes

The scheme of a URI is the first part of the URI, before the : character. It indicates which protocol the browser must use to fetch the resource. The scheme may affect how the rest of the URI is structured and interpreted.

Syntax

protocol:

Description

Consider the following URL:

http://www.example.com:80/path/to/myfile.html?key1=value1&key2=value2#SomewhereInTheDocument

http is the scheme of the URL, indicating which protocol the browser must use. Usually it is the HTTP protocol or its secured version, HTTPS. The Web requires http or https, but browsers can open URIs with other schemes, like those that start with mailto: (to open a mail client) or ftp: (file transfers).

When using URLs in {{Glossary("HTML")}}  content, you generally only use a few of these URL schemes. When referring to subresources — that is, files that are being loaded as part of a larger document — you should only use the HTTP and HTTPS schemes. Increasingly, browsers are removing support for using FTP to load subresources, for security reasons.

FTP is still acceptable at the top level (such as typed directly into the browser’s URL bar, or the target of a link), although some browsers may delegate loading FTP content to another application.

Examples

Different URI schemes

The following example shows different URI formats based on URI scheme.

tel:+1-816-555-1212
git@github.com:mdn/browser-compat-data.git
ftp://example.org/resource.txt
urn:isbn:9780141036144
mailto:help@supercyberhelpdesk.info

Specifications

{{Specifications}} 

See also

In this article

View on MDN