我想允许用户使用php脚本下载html文件。
我知道这可以用于图像文件,但是可以使用html / css文件,如果不能,我怎么能压缩文件或其他东西,然后允许用户下载zip?
他们只能通过php脚本访问.html文件。该文件将受密码保护。
答案 0 :(得分:6)
有可能,你只需要弄乱PHP标题。
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=\"filenamehere.html\");
您必须获取该文件并通过PHP脚本传递它。