例如,如果我设置了一些标题来从我的服务器下载文件,我会这样做
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="downloaded.pdf"');
然后只输出文件的数据
是否可以在Content-Disposition中设置远程网址?
示例header('Content-Disposition: attachment; filename="http://remote.location/downloaded.pdf"
);
或者我只是以错误的方式思考它?
答案 0 :(得分:1)
不,你只需要302 redirect。
答案 1 :(得分:0)
没有
正如Matthew所建议的那样是使用重定向。
其他选项是从脚本下载文件,然后只输出下载的文件。