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.
我想允许用户使用 php 脚本下载 html 文件。
我知道这对于图像文件是可能的,但是对于 html/css 文件是否可能,如果不是,我如何压缩文件或其他东西,然后允许用户下载 zip?
他们只能通过 php 脚本访问 .html 文件。该文件将受密码保护。
有可能,您只需要弄乱 PHP 标头即可。
header("Content-Type: application/force-download"); header("Content-Disposition: attachment; filename=\"filenamehere.html\");
您必须获取文件并通过 PHP 脚本传递它。