Jump to content

how to request full URL


ShoeLace1291

Recommended Posts

I'm looking for a way to get the full url of the current page.  something like $_SERVER['REQUEST_URI'] but the full thing.  request uri doesn't work well for my situation, because my script is in a subdirectory of a domain.  http://localhost/script.  When I use request uri, it also includes "/script", which it should.  Is there anyway to request the full URL?

Link to comment
Share on other sites

//get the url from the address bar
$url = filter_var("http://".$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'], FILTER_SANITIZE_STRING);
if (!empty($_SERVER["QUERY_STRING"])){
$query_string = filter_var($_SERVER['QUERY_STRING'], FILTER_SANITIZE_STRING);
$url .= "?".$query_string;
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.