我的Codeigniter项目显示标头错误


My Codeigniter project showing header error

我正面临一个问题。所以请不要提及其他解决方案。到目前为止,我找到了很多解决方案,比如留白

A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /homepages/27/d595312696/htdocs/application/config/database.php:1)
Filename: libraries/Session.php
Line Number: 689

但是我没有发现任何错误。请具体帮助。我已经搜索了重复的问题,但还没有得到任何解决方案。它在本地服务器上工作。但是上传到服务器后,我发现了这个问题

您在某处调用了header(),并且在您向页面输出一些文本之前。所有头应该在任何输出之前指定。

从http://php.net/manual/en/function.header.php

<html>
<?php
/* This will give an error. Note the output
 * above, which is before the header() call */
header('Location: http://www.example.com/');
exit;
?>