se puede usar:
   Código PHP:
    $enlace = "otrodominio[dot]com/"."$aTmp[1]";
header ("Content-Disposition: attachment; filename=".$aTmp[1]."\n\n"); 
header ("Content-Type: application/octet-stream"); 
header ("Content-Length: ".filesize($enlace)); 
readfile($enlace); 
    
  es decir tomar el archivo de otro servidor distinto.