Assume an absolute http or https URL. I'm looking for an "official" or generally accepted name for the part of the URL that comes before the path.
http://foo:bar@example.com:8042/over/there?name=ferret#nose
\_____________________________/
|
this part
RFC 3986 defines the URL syntax parts as follows:
http://foo:bar@example.com:8042/over/there?name=ferret#nose
\__/ \______________________/\_________/ \_________/ \__/
| | | | |
scheme authority path query fragment
RFC 6454 defines the origin (as in "same origin") of an the URL as the triple (scheme, host, port):
http://foo:bar@example.com:8042/over/there?name=ferret#nose
\__/ \______________/
\________________/
|
origin
As such, neither term is appropriate. Is there a good term for the part I'm looking at, or am I stuck with "scheme (plus ://
) plus authority"?