0

我决定尝试使用 mod_rewrite 来隐藏用户可以下载的文件的位置。

所以他们点击指向“/download/some_file/”的链接,然后他们得到“/downloads/some_file.zip”

像这样实现:

RewriteRule ^download/([^/\.]+)/?$ downloads/$1.zip [L]

这有效,除非当下载进度出现时我得到一个没有扩展名的文件“下载”,这看起来很可疑,并且用户可能不知道他们应该解压缩它。有没有办法让它看起来像一个实际的文件?还是有更好的方法我应该这样做?

为隐藏文件的位置提供一些上下文/原因。这是一个乐队,只要用户注册邮件列表,就可以免费下载音乐。

我也不需要在 .htaccess 中执行此操作

4

2 回答 2

1

您可以通过发送Content-disposition标头来设置文件名:

https://serverfault.com/questions/101948/how-to-send-content-disposition-headers-in-apache-for-files

于 2012-05-25T12:06:54.503 回答
0

好的,所以我相信我可以使用 .htaccess 设置哪些标头

所以我改用php解决了这个问题。

我最初复制了一个在这里找到的下载 php 脚本: How to rewrite and set headers at the same time in Apache

但是我的文件太大了,所以这不能正常工作。

经过一番谷歌搜索后,我发现了这个:http ://teddy.fr/blog/how-serve-big-files-through-php

所以我的完整解决方案如下......

首先发送请求下载脚本:

RewriteRule ^download/([^/\.]+)/?$ downloads/download.php?download=$1 [L]

然后获取完整的文件名,设置标题,并逐块提供:

<?php
if ($_GET['download']){
  $file = $_SERVER['DOCUMENT_ROOT'].'media/downloads/' . $_GET['download'] . '.zip';
}

define('CHUNK_SIZE', 1024*1024); // Size (in bytes) of tiles chunk

// Read a file and display its content chunk by chunk
function readfile_chunked($filename, $retbytes = TRUE) {
    $buffer = '';
    $cnt =0;
    // $handle = fopen($filename, 'rb');
    $handle = fopen($filename, 'rb');
    if ($handle === false) {
      return false;
    }

    while (!feof($handle)) {
        $buffer = fread($handle, CHUNK_SIZE);
        echo $buffer;
        ob_flush();
        flush();
        if ($retbytes) {
            $cnt += strlen($buffer);
        }   
    }
    $status = fclose($handle);
    if ($retbytes && $status) {
        return $cnt; // return num. bytes delivered like readfile() does.
    }
    return $status;
}

$save_as_name = basename($file);   
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: no-cache');
header("Content-Type: application/zip");
header("Content-Disposition: disposition-type=attachment; filename=\"$save_as_name\"");

readfile_chunked($file); 
?>
于 2012-05-25T12:51:50.940 回答