Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

Curl Referer i Redirekt ?

[es] :: PHP :: Curl Referer i Redirekt ?

[ Pregleda: 1007 | Odgovora: 1 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

deki_bg

Član broj: 3334
Poruke: 244
*.dynamic.sbb.rs.



Profil

icon Curl Referer i Redirekt ?14.08.2011. u 19:35 - pre 154 meseci
Zelim da namestim redirektor koji prebaci na neku stranu ali promeni referer.
Ovaj kod radi, medjutim u borwseru u adresi ostaje stranica na kojoj se nalazi skripta.
Kako da namestim da se nakon izvrsenja koda desi redirekt na target-url.com i da se on vidi gore u navigainom baru gde su kuca URL

Code:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://www.target-url.com/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, 'http://www.facebook.com/');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
//curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, false);
$html = curl_exec($ch);
curl_close ( $ch );
echo $html;
 
Odgovor na temu

VladaSu

Član broj: 31634
Poruke: 1099
*.dynamic.isp.telekom.rs.



+218 Profil

icon Re: Curl Referer i Redirekt ?15.08.2011. u 10:56 - pre 154 meseci
Code (php):

header('Location: www.target-url.com');
exit;
 

[Ovu poruku je menjao VladaSu dana 14.06.2003. u 11:22 GMT+1]
 
Odgovor na temu

[es] :: PHP :: Curl Referer i Redirekt ?

[ Pregleda: 1007 | Odgovora: 1 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.