我在目录ram file
中创建了/mnt/tempram/temp1
我使用过命令:
mkdir -p /mnt/tempram
mount -t ramfs -o size=128K ramfs /mnt/tempram
现在我已经创建了一个php文件来下载这个文件
<?php
$file = "/mnt/tempram/temp1";
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
我无法访问此文件。我理解apache web服务器的这个问题。 请帮助!!