私たちは皆、相対パスに精通しています。./images/hello.jpg
からhttp://www.domain.com/hey
へのhttp://www.domain.com/hey/images/hello.jpg
への相対パス。
問題:http://www.domain.com:1234
にいるときに、http://www.domain.com/hey
への相対パスをどのように記述しますか?
これは、JavaScriptを使用してwindow.location.port
プロパティを設定することで実現できます。
<a href="#" onclick="javascript:window.location.port=8080">go</a>
権限のどの部分も変更できません(つまり、Host:port一部)相対URL。相対URLがどのように解釈されるかを確認するには、 セクション5.2.2 of RFC 3986 で説明されているアルゴリズムを参照してください。注意すべき重要な点は、権限はベース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;
簡単な答え:不可能。ホストが変更された場合は、絶対パスを使用する必要があります。