在里面curl
手册页他们解释说,可以通过以下方式将文件上传到网站
curl -T "{file1,file2}" http://www.uploadtothissite.com
curl -T "img[1-1000].png" ftp://ftp.picturemania.com/upload/
问题
如何配置 Apache 以接受来自 的上传curl -T
?
答案1
您需要在 apache 上启用 mod_dav 来支持 PUT 请求。
在里面curl
手册页他们解释说,可以通过以下方式将文件上传到网站
curl -T "{file1,file2}" http://www.uploadtothissite.com
curl -T "img[1-1000].png" ftp://ftp.picturemania.com/upload/
问题
如何配置 Apache 以接受来自 的上传curl -T
?
您需要在 apache 上启用 mod_dav 来支持 PUT 请求。