使用xxx代码在linux上编译运行,访问xxx.html时,上传文件出现错误500 Server Internal Error,查看apache错误日志error.log看到错误:
Premature end of script headers
网上搜索这个错误,发现一般是文件权限问题,于是配置httpd.conf的文件权限
确保allow在deny前,allow from all
重新执行,还是同样的错误,后来发现是apache那个用户没有权限写这个目录,默认这个目录只有root用户有权限修改。于是
chmod o+w /usr/local/apache/cgi-bin 修改权限