Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想做一个网站,只允许真实用户从浏览器下载文件。其他任何人都无法下载该文件。
我已经上传了具有 000 访问权限的文件,这将限制用户,但是如何只向真实用户授予权限。?
有人可以帮我吗?
您无需提供文件物理文件夹的链接。你可以用这样的代码来模拟它(png的例子):
header("Content-Type: application/octet-stream; "); header("Content-Transfer-Encoding: binary"); header('Content-Disposition: attachment; filename="name.png"'); readfile($fileaddress);