wordpress后台Warning: Cannot modify header information - headers already sent by

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wordpress后台Warning: Cannot modify header information - headers already sent by相关的知识,希望对你有一定的参考价值。

Warning: Cannot modify header information - headers already sent by (output started at /。。。/public_html/wp-config.php:1) in /。。。/public_html/wp-includes/pluggable.php on line 890

pluggable.php 这个文件其中一部分内容

function wp_redirect($location, $status = 302)
global $is_IIS;

$location = apply_filters('wp_redirect', $location, $status);
$status = apply_filters('wp_redirect_status', $status, $location);

if ( !$location ) // allows the wp_redirect filter to cancel a redirect
return false;

$location = wp_sanitize_redirect($location);

if ( $is_IIS )
header("Refresh: 0;url=$location");
else
if ( php_sapi_name() != 'cgi-fcgi' )
status_header($status); // This causes problems on IIS and some FastCGI setups
header("Location: $location", true, $status); (这是890行)



前台没问题,后台出现这问题

DW编辑文件的话默认貌似不是utf8无bom,你检查一下编码,这毛病通常是因为括号里那个文件由于有bom多出一个看不见的空格 参考技术A 我的也有这样提示,不过我是把Auto Blogroll 插件停用就可以了!不信你可以试试! 参考技术B 备份下数据 重装wordpress吧 这种问题比较难解决。。

以上是关于wordpress后台Warning: Cannot modify header information - headers already sent by的主要内容,如果未能解决你的问题,请参考以下文章

我在安装wordpress主题时出现以下问题,请高手指点!感谢

wordpress后台登陆地址,怎么进入WordPress后台

wordpress非插件实现后台保护代码

wordpress 5.1 后台拿shell

Wordpress开发基础|后台定制jQuery UI

怎么隐藏wordpress 后台登录地址