.htaccess解决方案
要强行下载服务器上的所有CSV文件,请添加.htaccess文件:
AddType application/octet-stream csv
PHP解决方案
header('Content-Type: application/csv');header('Content-Disposition: attachment; filename=example.csv');header('Pragma: no-cache');readfile("/path/to/yourfile.csv");


