我想用php将我的文件复制到as s3上的另一个文件夹中。
$this->s3Client->copyObject(array(
'Bucket' => $this->bucket,
'CopySource' => $this->bucket . '/' . "$filenameOrigin",
"Key" => "$filenameDestination"));
在https://coconut-dropbox.s3.eu-west-3.amazonaws.com/testcopy.txt上执行“ CopyObject”时出错
它不起作用,因为我在s3上的对象的网址是: https://s3.eu-west-3.amazonaws.com/coconut-dropbox/text.txt
但是我不知道该怎么做才能在Php中正确配置此链接。