响应::在将站点转移到另一个服务器laravel 5.2之后下载不起作用

时间:2017-03-22 14:48:16

标签: php laravel laravel-5

将网站转移到新服务器后

public function download($filename)
    {
      $file= base_path(). "/uploads/pagefiles/$filename/".$filename;
        $headers = array(
                  'Content-Type: application/pdf',
                );

        return Response::download($file, "$filename", $headers);
    }

新服务器使用PHP5.5
而最老的服务器使用PHP7
如果我直接将链接放在浏览器中,则下载文件

0 个答案:

没有答案