我尝试使用自定义内容类型在 laravel 中返回文件下载响应,响应内容类型以 text/html 形式出现在 localhost 中的浏览器中。而它在服务器机器代码中运行良好。它使调试变得更加困难。
它与apache服务器配置有关吗?
下面是使用的 laravel 代码。
return Response::download($filepath, $filename.'_questionaire.csv', array(
'Content-Type' => 'text/csv',
'Content-Disposition' => 'attachment;filename="'.$filename.'._questionaire.csv"'
));