2

例如,如果我设置一些标题以从我的服务器下载文件,我会这样做

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");

还是我只是以错误的方式思考它?

4

2 回答 2

1

不,您只需执行302 重定向

于 2009-05-28T03:57:27.040 回答
0

不。

正如马修建议的那样,使用重定向。

其他选项是从脚本下载文件,然后只输出下载的文件。

于 2009-05-28T06:19:27.303 回答