如何将另一个网站文件下载到我的网站中?

发布于 2024-10-11 00:40:21 字数 76 浏览 2 评论 0原文

您好,我有一个 domain.com 网站,我想知道如何将具有简单 url 的文件下载到我的网站空间中?是使用 shell 脚本还是什么?

hi I have a domain.com website and I was wondering how would I download a file with simple url into my website space ? is it using shell scripts or what ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

老娘不死你永远是小三 2024-10-18 00:40:21

这取决于您在网络服务器上可用的工具。如果您有 ssh 访问权限,并且服务器上安装了 wget 或 curl,那么这将是最简单的方法:通过 ssh 进入服务器,然后发出如下命令:

wget http://example.com/resource

如果您没有 ssh 访问权限,您将需要使用服务器上可用的任何脚本语言编写脚本,确保它受到适当的保护,然后运行它。

It depends on the tools you have available on the web server. If you have ssh access, and either wget or curl is installed on the server, then that would be the easiest way: ssh into the server, and the issue a command like this:

wget http://example.com/resource

If you don't have ssh access, you'll need to write a script in whatever scripting language you have available on the server, make sure it's properly protected, and then run it.

涙—继续流 2024-10-18 00:40:21

这完全取决于您对服务器的访问类型。

例如,当您具有 shell 访问权限时,您可以执行简单的 wget 来下载文件,然后只需将其移动到正确的位置即可。

否则,如果它是共享主机并且您只有 ftp 访问权限,则可以在可以执行的服务器上放置一个脚本,然后下载远程文件。

That completely depends on what kind of access you have to the server.

When you have shell access, for example you could do a simple wget <url> to download a file, and then you would just move it to the correct location.

Otherwise, if it is shared hosting and you only have ftp access, you can put a script on the server you can executes that then downloads a remote file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文