例如,如果我设置一些标题以从我的服务器下载文件,我会这样做
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="downloaded.pdf"');
然后只输出文件的数据
是否可以在 Content-Disposition 中设置远程 url?
示例header('Content-Disposition: attachment; filename="http://remote.location/downloaded.pdf"
);
还是我只是以错误的方式思考它?