Нельзя изменить какую-либо часть полномочий (то есть хост : порт часть) в относительных URL-адресах.
См. Алгоритм, описанный в разделе 5.2.2 из RFC 3986 , чтобы увидеть, как интерпретируются относительные URL. Важно отметить, что полномочия просто копируются из базового URL или из разрешаемого URL, и структура полномочий никогда не интерпретируется. Это означает, что вы не можете изменить ни одну из его частей, включая часть порта.
Вот алгоритм в псевдокоде, скопированный с RFC :
-- The URI reference is parsed into the five URI components
--
(R.scheme, R.authority, R.path, R.query, R.fragment) = parse(R);
-- A non-strict parser may ignore a scheme in the reference
-- if it is identical to the base URI's scheme.
--
if ((not strict) and (R.scheme == Base.scheme)) then
undefine(R.scheme);
endif;
if defined(R.scheme) then
T.scheme = R.scheme;
T.authority = R.authority;
T.path = remove_dot_segments(R.path);
T.query = R.query;
else
if defined(R.authority) then
T.authority = R.authority;
T.path = remove_dot_segments(R.path);
T.query = R.query;
else
if (R.path == "") then
T.path = Base.path;
if defined(R.query) then
T.query = R.query;
else
T.query = Base.query;
endif;
else
if (R.path starts-with "/") then
T.path = remove_dot_segments(R.path);
else
T.path = merge(Base.path, R.path);
T.path = remove_dot_segments(T.path);
endif;
T.query = R.query;
endif;
T.authority = Base.authority;
endif;
T.scheme = Base.scheme;
endif;
T.fragment = R.fragment;