我在.htaccess文件中有一个RewriteRule:
RewriteRule ^folder/(.*)$ folder/handle.php?path=$1 [L]
使用handle.php
文件对用户进行身份验证,并查看他们是否拥有高级帐户。
我想 [1] 检查用户是否未经过身份验证,然后页面显示错误,otherwise
[2] 下载获取开始&我不想使用任何PHP类或脚本来处理文件下载(只需正常的服务器端下载而无需php处理)。
我怎样才能实现这一目标?有可能吗?
请求下载文件的网址:http://mywebsite.com/folder/file.zip
答案 0 :(得分:0)
你有的重写规则很好......除了你应该添加一个条件来检查并确保REQUEST不是“handle.php” - 否则你可能会得到一个重定向循环。
现在,在你的handle.php文件中 - 这是处理该文件夹中的所有文件请求。
在handle.php中,您可以使用$_GET['path']
来获取所请求的文件名。在handle.php中,您可以包含身份验证检查。如果身份验证检查通过,您可以继续readfile
给用户。 handle.php的一个例子:
<?php
set_time_limit(0);
session_start();
include "../some_functions_auth_file.php";
// NOTE: better file checking should be implemented here. We're using basename() for now.
$file = !empty($_GET['path']) ? basename($_GET['path']) : false;
if($file === false || !file_exists($file)) die("Invalid file.");
if(user_is_authenticated()) {
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false );
header("Pragma: no-cache" );
header("Content-Type: application/octet-stream");
header("Content-Length: " .(string)(filesize($file)) );
header('Content-Disposition: attachment; filename="'.$file.'"');
header("Content-Transfer-Encoding: binary\n");
readfile($file);
exit;
} else {
header("Location: ../login.php");
}
?>
请注意,这是非常基本且未经测试的
现在,如果你不想使用readfile
(因为它很好,很慢),那么也许你可以设置一个Apache环境变量...然后,在.htaccess中,你可以检查一下该变量存在 - 如果存在,则允许下载。否则将用户重定向到登录。