我有一个 PHP 文件来强制下载 PDF 文件,在一台服务器(linux)上它运行良好,但是当我将站点移动到另一台服务器(Win)时,它开始出现此错误:
PHP Warning: readfile(./forms/Form.pdf)
[<a href='function.readfile'>function.readfile</a>]:
failed to open stream: No such file or directory in
D:\CustomerData\webspaces\webspace\wwwroot\Form.php
on line 4
PHP文件有这个:
<?php
header('Content-disposition: attachment; filename=./forms/Form.pdf');
header('Content-type: application/pdf');
readfile('./forms/Form.pdf');
?>
谢谢!