我可以在我的符号链接上获得眼球吗?
我正在尝试从一个目录下载文件,而该文件实际上存在于另一个目录中。
我有实际的文件和单独的子目录中的符号链接,但两者都位于公共 html 中(两者都可以通过网络访问)。
我已经通过直接访问文件验证了我的(共享 Linux)服务器上的文件和文件位置。
正在创建链接(我使用了 readlink、is_link 和 linkinfo),当我 FTP 进入时我可以看到它。
我相信我可能只是对目录结构有误解。
我把文件放在这里:./testdownload/
我把符号链接放在这里:./testDelivery/
<?php
$fileName = "testfiledownload.zip";//Name of File
$fileRepository = "./testdownload/";//Where the actual file lives
$downloadDirectory = "./testDelivery/";//Where the symlink lives
unlink($downloadDirectory . $fileName); // Deletes any previously exsisting symlink (required)
symlink($fileRepository . $fileName, $downloadDirectory . $fileName);
$checkLink = ($downloadDirectory . $fileName);
if (is_link($checkLink))
{
echo ("<br>Symlink reads: " .readlink($checkLink) . "<br>");
echo ("<br>LinkeInfo reads: " . linkinfo($checkLink));
}
?>
<p><a href="<?php echo ("/testDelivery/" . $fileName); ?>"</a>SymLink</p>
<p><a href="<?php echo ("/testdownload/" . $fileName); ?>"</a>regular link</p>
一切对我来说都是正确的......但链接不起作用。帮助?
最终,我会将源数据放在公共区域之外……这只是为了测试。
(我试图找到一个更好的下载解决方案,而不是分块出因连接不良而失败的 fread。(200-400MB 文件))