例如,在文件test.php
中:
<a href="someting/?start=1">go</a>;
因此,无论test.php
位于何处,无论是在Document_Root/Test/
目录还是在Document_Root/Production/
目录中,锚都将指向自身。
答案 0 :(得分:10)
要编写仅更改查询字符串的链接,只需使用
即可<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
。