Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、ファイル内test.php:
test.php
<a href="someting/?start=1">go</a>;
そのため、これtest.phpがディレクトリ内であろうとDocument_Root/Test/ディレクトリ内でDocument_Root/Production/あろうと、アンカーはそれ自体を指します。
Document_Root/Test/
Document_Root/Production/
クエリ文字列のみを変更するリンクを作成するには、次を使用します
<a href="?foo=bar">whatever</a>
つまり、 にいる場合は にhttp://the/current/url.php、 にいるhttp://the/current/url.php?foo=bar場合はhttp://somewhere/else?entire=lyに移動しhttp://somewhere/else?foo=barます。
http://the/current/url.php
http://the/current/url.php?foo=bar
http://somewhere/else?entire=ly
http://somewhere/else?foo=bar