Ask your PHP script to retrieve the remote content:
$data = file_get_contents($remote_url);
And then just spit it out:
echo $data;
Or simply:
echo file_get_contents($remote_url);
You may need to add some headers to indicate the type of content.
- nginx - URL- , .