php跳转 - php提示「headers already sent by」具体怎么修改!
纯新人,跳转代码别人帮我写的,目的是跳转,文件为go.php
当网址输入go.php?id=taobao的时候就跳转到www.taobao.com
换主机后发生错误
Warning: Cannot modify header information - headers already sent by (output started at /data/home/。。。。。。/go.php:8) in /data/home/。。。。。。/go.php on line 10
百度得知需要改php.ini但新主机改这个很麻烦。。求有没有直接在以上文件php代码里修改以上错误的方法?
代码:
<code> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>正在进入....</title> <?php $id=$_GET["id"]; if($id=="taobao"){Header("Location:http://www.taobao.com"); } ?> </code>
请问应该怎么修改?谢谢!!!
回复内容:
纯新人,跳转代码别人帮我写的,目的是跳转,文件为go.php
当网址输入go.php?id=taobao的时候就跳转到www.taobao.com
换主机后发生错误
Warning: Cannot modify header information - headers already sent by (output started at /data/home/。。。。。。/go.php:8) in /data/home/。。。。。。/go.php on line 10
百度得知需要改php.ini但新主机改这个很麻烦。。求有没有直接在以上文件php代码里修改以上错误的方法?
代码:
<code> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>正在进入....</title> <?php $id=$_GET["id"]; if($id=="taobao"){Header("Location:http://www.taobao.com"); } ?> </code>
请问应该怎么修改?谢谢!!!
go.php页面的作用只做判断跳转使用的话,html标签可以全部去除,go.php文件的代码只需精简到剩下php即可:
<code>php</code><code><?php $id=$_GET["id"]; if($id=="taobao"){Header("Location:http://www.taobao.com"); } </code></code>
如果还出现headers already sent 错误的话,就应该是编写代码的编辑器在文件开头隐藏了bom头信息,网上搜一下相关的编辑器对应方法即可。
如果要保留html代码,并且想要跳转的话,需要使用浏览器端页面跳转的方法,代码可以修改为:
<code>php</code><code> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>正在进入....</title> <?php $id=$_GET["id"]; switch($id) { case 'taobao': echo "<meta http-equiv=\"refresh\" content=\"0;url=http://taobao.com\">"; break; case 'baidu': echo "<meta http-equiv='\"refresh\"' content='\"0;url=http://taobao.com\"'>"; break; case 'others': echo "<meta http-equiv='\"refresh\"' content='\"0;url=http://others.com\"'>"; break; } ?> </code>
【http-equiv实现跳转与header跳转有啥区别】请参照 http://segmentfault.com/q/1010000000703858
把 <?php ... ?>
代码块放到文件最顶部.
header() 被用来发送自定义的 HTTP 报文。
请注意一点header()必须在任何实际输出之前调用,不管是普通的html标签,还是文件里面的空行,空格或者是PHP>文件里的空行,空格。
这是一个非常普遍的错误,在通过include,require,或者其访问其他文件
里面的函数的时候,如果在header()被调用之前,其中有空格或者空行。
如果不是调用其他文件,仅仅是单独使用一个PHP或者HTML文件,在header()被调用之前有输出也会出错。
php手册

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
