opencombatclan Posted December 11, 2010 Share Posted December 11, 2010 Hello everyone. I want to use php to obtain the 'location' value from a header of a url. However, when I use get_headers() it automatically follows the redirect and gives me the header information of the new page. I don't want this, I need the headers of the original page. (I need the value of the 'location' variable in the header). Hope you can help me out. Link to comment https://forums.phpfreaks.com/topic/221309-use-php-to-obtain-header-location/ Share on other sites More sharing options...
MMDE Posted December 11, 2010 Share Posted December 11, 2010 Have you looked at this array? http://www.php.net/manual/en/reserved.variables.server.php <?php echo $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; ?> for example Link to comment https://forums.phpfreaks.com/topic/221309-use-php-to-obtain-header-location/#findComment-1145702 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.