0

我有一个简单的小 php 代码,允许我强制用户从我的网站下载视频,而不是在浏览器中播放

<?php

$path = $_GET['path'];
header('Content-Disposition: attachment; filename=' . basename($path));
readfile($path);

?>

由于我将网站移至新服务器,因此似乎存在权限问题,我收到403 Forbidden “您无权访问此服务器上的 /download-stream.php”。

php 文件设置为与以前相同的权限(644)。我不确定它为什么现在这样做。

4

2 回答 2

1

我通常使用这样的东西来强制下载。如果您更改正在下载的文件类型,请记住更改 MIME 类型。

        $attachment_location = $_SERVER["DOCUMENT_ROOT"] . "/file.zip";
        if (file_exists($attachment_location)) {

            header($_SERVER["SERVER_PROTOCOL"] . " 200 OK");
            header("Cache-Control: public"); // needed for i.e.
            header("Content-Type: application/zip");
            header("Content-Transfer-Encoding: Binary");
            header("Content-Length:".filesize($attachment_location));
            header("Content-Disposition: attachment; filename=file.zip");
            readfile($attachment_location);
            die();        
        } else {
            die("Error: File not found.");
        } 
于 2011-06-01T07:03:34.853 回答
0

尝试这样的事情:

<?php
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$path\"\n");
$fp=fopen("$path", "r");
fpassthru($fp);

?>

于 2011-06-01T06:58:53.403 回答