Making a simple request like:
$client = new Zend_Http_Client('http://example.org');
$response = $client->request();
How can I get the final URL after the redirects? I have not seen a way in the documentation or the API docs unless I'm missing something.
Thanks in advance.