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
https://forums.phpfreaks.com/topic/259776-how-to-request-full-url/
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;
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.