php - 如何授予对 public_html 目录外文件的下载访问权限?

标签 php .htaccess redirect

出于安全目的,我将文件存储在 public_html 文件夹之外。但是,我想以某种方式链接到特定文件,用户可以在其中下载这些文件之一。

我正在使用一个 jquery 脚本,它允许我将服务器 PATH 指定为上传文件夹,并且它会在 public_html 文件夹之外上传。

唯一的问题是它要求我指定用于下载文件的“上传路径”的 URL。我以为我可以做类似的事情:

public_html/redirect (contains htaccess which forwards all requests to "hiding" folder)

hiding (outside public_html)

A user clicks /redirect/file.doc and they download a file located at hiding/file.doc

这可能吗?如果没有,我如何才能为我的 public_html 目录之外的文件提供特定文件下载访问权限?我知道我以前在其他脚本上看到过它...

最佳答案

您可以使用“php 下载处理程序”执行此操作:

您可以使用这种方法将文件内容和文件信息头返回给用户浏览器,只要确保在此之前没有输出任何其他内容即可。

我建议您将它放在单独的文件中并调用它,例如 download.php

function returnFile( $filename ) {
    // Check if file exists, if it is not here return false:
    if ( !file_exists( $filename )) return false;
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    // Suggest better filename for browser to use when saving file:
    header('Content-Disposition: attachment; filename='.basename($filename));
    header('Content-Transfer-Encoding: binary');
    // Caching headers:
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    // This should be set:
    header('Content-Length: ' . filesize($filename));
    // Clean output buffer without sending it, alternatively you can do ob_end_clean(); to also turn off buffering.
    ob_clean();
    // And flush buffers, don't know actually why but php manual seems recommending it:
    flush();
    // Read file and output it's contents:
    readfile( $filename );
    // You need to exit after that or at least make sure that anything other is not echoed out:
    exit;
}

为基本用途扩展它:

// Added to download.php
if (isset($_GET['file'])) {
    $filename = '/home/username/public_files/'.$_GET['file'];
    returnFile( $filename );
}

警告:

这是基本示例,没有考虑到用户可能会尝试利用未正确过滤的 $_GET 的一些邪恶优势。

这基本上意味着如果某些条件适用,用户可以检索 passwd 文件或其他一些敏感信息。

例如,检索/etc/passwd:

只需将浏览器指向 http://server.com/download.php?file=../../../etc/passwd,服务器就会返回该文件。因此,在实际使用之前,您应该了解如何正确检查和清理任何用户提供的参数。

关于php - 如何授予对 public_html 目录外文件的下载访问权限?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10272912/

相关文章:

php - 有没有办法将对象反序列化为 "$this"?

php - 有条件 mysqli 日期范围检查以在 sql 中打印价格

.htaccess 重定向 - 更新站点(301 合适?)

redirect - 我如何重定向到第一个子组件 vue 路由器

将超过 8443 的请求重定向到 443

java - 将 jsp 重定向到另一个 jsp (Struts1)

php - 使用 INNER JOIN 从 3 个相关表中获取数据

php - Laravel 护照 : auth:api behaving like auth:web

html - .htaccess 重写/接受语言

php - Codeigniter子域路由