web-dev-qa-db-ja.com

相対パスですが、ポート用ですか?

私たちは皆、相対パスに精通しています。./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への相対パスをどのように記述しますか?

21
Nyxynyx

これは、JavaScriptを使用してwindow.location.portプロパティを設定することで実現できます。

<a href="#" onclick="javascript:window.location.port=8080">go</a>
20
peterp

権限のどの部分も変更できません(つまり、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;
19
Adam Zalcman

簡単な答え:不可能。ホストが変更された場合は、絶対パスを使用する必要があります。

2
Julien Schmidt