Warning: Cannot modify header information - headers already sent by (output started at /home/caiycom/domains/caiy007.com/public_html/wp-config.php:1) in /home/caiycom/domains/caiy007.com/public_html/wp-admin/install.php on line 54
输入用户名和密码点登录出现
Warning: Cannot modify header information - headers already sent by (output started at /home/caiycom/domains/caiy007.com/public_html/wp-config.php:1) in /home/caiycom/domains/caiy007.com/public_html/wp-login.php on line 349Warning: Cannot modify header information - headers already sent by (output started at /home/caiycom/domains/caiy007.com/public_html/wp-config.php:1) in /home/caiycom/domains/caiy007.com/public_html/wp-login.php on line 361Warning: Cannot modify header information - headers already sent by (output started at /home/caiycom/domains/caiy007.com/public_html/wp-config.php:1) in /home/caiycom/domains/caiy007.com/public_html/wp-includes/pluggable.php on line 669Warning: Cannot modify header information - headers already sent by (output started at /home/caiycom/domains/caiy007.com/public_html/wp-config.php:1) in /home/caiycom/domains/caiy007.com/public_html/wp-includes/pluggable.php on line 670Warning: Cannot modify header information - headers already sent by (output started at /home/caiycom/domains/caiy007.com/public_html/wp-config.php:1) in /home/caiycom/domains/caiy007.com/public_html/wp-includes/pluggable.php on line 671Warning: Cannot modify header information - headers already sent by (output started at /home/caiycom/domains/caiy007.com/public_html/wp-config.php:1) in /home/caiycom/domains/caiy007.com/public_html/wp-includes/pluggable.php on line 866这是什么情况啊

解决方案 »

  1.   

    一种可能是文件有BOM头 修正为无BOM格式的即可。
    另一种可能代码在header函数之前,输出了部分错误信息。
      

  2.   

    wp-config.php这个文件 第一行,应该是已经输出了header头了
      

  3.   

    你在修改 wp-config.php 文件后,将其保存成有 BOM 头的文件了
    重新保存为无BOM的就可以了如果你的编辑器不支持去掉BOM头
    可以这样做:
    建一个php文件,内容为
    <?php
    file_put_contents('wp-config.php', substr(file_get_contents('wp-config.php'), 3));执行一下就可以了
      

  4.   

    ......budong a