编程语言
首页 > 编程语言> > 重定向功能PHP

重定向功能PHP

作者:互联网

我有一个在PHP脚本上编写的函数“ redirect_to()”,该函数在成功更新到自定义CMS上的页面后会被调用.它在localhost上运行良好,但是当我在实际的活动域上尝试时,出现以下错误消息:

警告:无法修改标头信息-/hermes/bosweb/web119/b1192/ipg.typaldosnetcom/includes/中已经发送过的标头(输出始于/hermes/bosweb/web119/b1192/ipg.typaldosnetcom/edit_listing.php:7)在第20行上的functions.php

这是redirect_to()函数的代码:

function redirect_to ($location = NULL) {
    if ($location != NULL) {
        header("Location: {$location}");
        exit;
    }
}

我已经确保在输出任何HTML之前先调用该函数,所以我不确定真正的问题是什么.

我的问题:为什么我会收到此错误?

解决方法:

在设置标题之前,您已经将输出发送到该页面.首先,您需要设置标题,然后才能输出.

它甚至可以是空白.

标签:redirect,http-headers,php
来源: https://codeday.me/bug/20191208/2088428.html