我有 2 个不同的服务器,我将我的 mp3 文件放在服务器1,我正在测试从服务器2使用 wget 工具:
wget "http://www.example.com/Path-to-mp3-file"
我有两个结果:
1)如果我从 server1(文件所在的位置)下载,它会下载
2)如果我从 server2 下载,它会显示 404
wget "http://www.example.com/Path-to-mp3-file"
--2016-06-15 10:08:06-- http://www.example.com/Path-to-mp3-file
Resolving www.example.com (www.example.com)... SERVER2-IP
Connecting to www.example.com (www.example.com)|SERVER2-IP|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2016-06-15 10:08:06 ERROR 404: Not Found.
编辑
我放置了 -o filename.mp3 并且现在就可以下载它,这两个命令有什么区别:
wget "http://www.example.com/Path-to-mp3-file"
和
wget -o filename.mp3 "http://www.example.com/Path-to-mp3-file"