我在
使用过命令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 服务器的这个问题。请帮忙!!