在服务器上存储商业文件

发布于 2024-08-23 02:13:03 字数 29 浏览 7 评论 0原文

您将在哪里存储要在电子商务网站上出售的文件?

Where would you store files that are meant for sale on an e-commerce website?

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

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

发布评论

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

评论(3

转瞬即逝 2024-08-30 02:13:03

htdocs/wwwroot/etc 之外的某个地方。您不希望任何人直接链接到他们。您应该有一个页面/脚本可以读取该位置并将文件发回。

Somewhere out of htdocs/wwwroot/etc. You don't want anyone to link to them directly. You should have a page/script that can read that location and send the file back.

阳光的暖冬 2024-08-30 02:13:03

在无法从 Internet 直接访问的网络区域中的安全服务器上。然后,您的网络服务器只能为授权用户访问和检索文件。

On a secure server in a network zone that is not directly accessible from the internet. Your webserver can then access and retrieve files only for authorised users.

听,心雨的声音 2024-08-30 02:13:03

经验法则:不在 htdocs 中(即无法从互联网访问)。

您想对这些文件做什么?客户付款后提供下载吗?您应该通过服务器端脚本(例如 PHP 脚本)管理凭据并授予该脚本访问文件的权限。

Rule of thumb: Not in htdocs (i.e. not accessible from the internet).

What do you want to do with those files? Offer them for downloading after a customer payed? You should manage the credentials by a server sided script (e.g. a PHP script) and give that script access to the file.

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