Skip to content
Advertisement

How can I find where I will be redirected using cURL?

I’m trying to make curl follow a redirect but I can’t quite get it to work right. I have a string that I want to send as a GET param to a server and get the resulting URL.

Example:

String = Kobold Vermin
Url = www.wowhead.com/search?q=Kobold+Worker

If you go to that url it will redirect you to “www.wowhead.com/npc=257”. I want curl to return this URL to my PHP code so that i can extract the “npc=257” and use it.

Current code:

JavaScript

This however returns www.wowhead.com/search?q=Kobold+Worker and not www.wowhead.com/npc=257.

I suspect PHP is returning before the external redirect happens. How can I fix this?

Advertisement

Answer

To make cURL follow a redirect, use:

JavaScript

Erm… I don’t think you’re actually executing the curl… Try:

curl_exec($ch);

…after setting the options, and before the curl_getinfo() call.

EDIT: If you just want to find out where a page redirects to, I’d use the advice here, and just use Curl to grab the headers and extract the Location: header from them:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement