Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know there are a lot of tricks for doing links, for example <a href="?query=string"> will link to the current page after appending the query string. Is there a way to link back to the current page, after removing the query string without just typing the file name?

Example, at the page foo.php?q=3, I want to link to foo.php. Is there a shortcut-type way to do this? The file will be renamed several times, so I don't want to type a bunch of links and then have to edit them later.

Edit: Even though these are PHP files, I'm trying to avoid a server-side solution for this particular problem.

share|improve this question

5 Answers

up vote 10 down vote accepted
href="?"

Not exactly what you are after - there's still a question mark at the end - but functionally equivalent.

share|improve this answer
Thanks, good call. – Shadow Oct 2 '09 at 0:51

Are you wanting a client-side equivalent to $_SERVER['PHP_SELF']? Something that will always link to the file with no extra stuff after the extension?

I'm not sure if this works in all browsers, but it works great in Firefox 3.5:

<a href="">Foo</a>
share|improve this answer
It doesn't clear the existing query string. – Alex Barrett Oct 2 '09 at 1:11
+1 As $_SERVER['PHP_SELF'] was actually the solution I needed. – John Catterfeld Aug 17 '11 at 20:01

You can use <a href="."> to reload the current page, removing the query string.

See this for a more detailed answer.

share|improve this answer

You can link to the current page you're on with:

<a href="#">blah</a>
share|improve this answer
3  
This does not perform a new request to the server in all browsers. – Alex Barrett Oct 2 '09 at 1:11

Don't forget about the anchors:

<a href="foo.php#">xxxx</a>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.