PHP Header redirection problem within page called by cURL PHP Header redirection problem within page called by cURL curl curl

PHP Header redirection problem within page called by cURL


If you want cURL to follow redirections add this:

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE); // Follow redirects


You'll want the options CURLOPT_FOLLOWLOCATION and CURLOPT_MAXREDIRS. See the manual.


try

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);