php curl yönlendirmeleri takip?

0 Cevap php

Ben başka bir sunucudan bir kıvrılma isteği almak içindir bir sayfa var.

Ben başka bir formata bu kıvırmak isteği biçimlendirmek gerekir.

bu yüzden bu kod var

<?php
$id =     (isset($_GET['msgid'])    ? $_GET['msgid']   : 'null');
$from =   (isset($_GET['from'])     ? $_GET['from']    : 'null');
$body =   (isset($_GET['content'])  ? $_GET['content'] : 'null');
$status = (isset($_GET['status'])   ? $_GET['status']  : 'null');

header("location: ../action/receive_message/$id/$from/$body/$status");
?>

so, if someone was to launch a curl request to
http://example.com/intercept/test.php?id=123&from=me&body=something;

Will that call
http://example.com/action/123/me/something/null?

Ya değilse i alabilirsiniz bir yolu var mı?

Diğer biridir.

Is there a way I can do this in .htaccess? So I dont have to create a seperate file for this?

0 Cevap