Is there a name for the portion of a URL that follows the scheme? If not for URLs in general, I'm interested in the name for this portion of HTTP and HTTPS URLs.
For example, what is the term for the entire portion labeled C
here, optionally including B
?
AAAAABBCCCCCCCCCCCCCCCCCCCCCCCC
http://company.com/path/to/file
I understand that there are names for subsets of this portion, such as host, port, and path.
The Wikipedia page for URI uses the term "path" to refer to the entire portion of a URI following several schemes, but for the HTTP and HTTPS schemes, the "path" is not this entire portion.
The BNF given for URIs in the URI specification defines the B
and C
portion together in a production called hier-part
, which the text seems to refer to as a "hierarchical sequence of components." hier-part
excludes the query and fragment (hash) portions, which would be fine for my purposes.
I'm asking so that I'm not unnecessarily inventing a name for a specification I'm writing.