我有一个 PHP 文件保护脚本:
.htaccess
RewriteEngine on
RewriteRule ^(.*).(zip|tgz)$ ../wp-file-protector.php?file=$1.$2 [QSA]
wp-file-protector.php
<?php
global $wpdb;
/** Make sure that the WordPress bootstrap has run before continuing. */
require( dirname(__FILE__) . '/wp-load.php' );
$current_user = wp_get_current_user();
if ($current_user->ID > 0){
$order = $_GET['order'];
$items = new_get_order_by_id_and_user($order, $current_user->ID);
if($items != false){
$file_enabled = true;
//Some authentication
$filepath = dirname(__FILE__).'/../downloads/'.$_GET['file'];
if($file_enabled && file_exists($filepath)){
$filename = basename($filepath);
$extension = end(explode('.', $filename));
ob_clean();
// http headers for zip downloads
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
if($extension == 'tgz'){
header("Content-Type: application/gzip");
}else{
header("Content-type: application/octet-stream");
}
header("Content-Disposition: attachment; filename=\"".$filename."\"");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($filepath));
ob_end_flush();
@readfile($filepath);
}
}
}
我可以很好地处理压缩文件和其他文件。gzip压缩文件出现问题。我得到了意想不到的结果(Firefox 下载和打开操作的结果也不同)。
我想我需要一些好的 gzip 文件头。我应该使用什么?
也很高兴知道请求是通过 Cloudflare 服务运行的,所以也许我应该发送一些标头,告诉 cloudflare 服务器不要压缩它。
我被困住了:(
更新#1
header("Content-type: application/x-gzip");
这也行不通。当我在 Firefox 中选择保存时,它会在打开时显示已损坏。当我选择打开时,我得到了一个没有扩展名的文件,但似乎是 tar,因为我可以更深入地进入目录。