php file_get_contents follow redirect
$context = stream_context_create(
array(
'http' => array(
'follow_location' => true/false
)
)
);
$html = file_get_contents('http://www.example.com/', false, $context);
var_dump($http_response_header);