我有一些文件保存在webroot
并且需要允许WordPress中的帖子能够访问这些文件。
以下是其中一个文件的位置:
/home1/Mathone/TESTS/Test1/index1.html
我创建了一个
Download.php
具有以下代码的文件:
<?php
$path = \'/home1/Mathone/TESTS/\'. $_GET[\'filename\'];
$mm_type="application/octet-stream";
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");
header("Content-Type: " . $mm_type);
header("Content-Length: " .(string)(filesize($path)) );
header(\'Content-Disposition: attachment; filename="\'.basename($path).\'"\');
header("Content-Transfer-Encoding: binary\\n");
readfile($path); // outputs the content of the file
exit();
?>
接下来,我在wordpress中创建了一篇帖子,其中包含以下链接:
<a href="download.php?filename=Test1/index1.html">download</a>
我出错了
这有点尴尬,不是吗<看来我们找不到你要找的东西。也许搜索可以有所帮助。
有人能告诉我我做错了什么吗?