php header 404错误包含文件出现乱码
发布:smiling 来源: PHP粉丝网 添加日期:2013-12-04 23:10:27 浏览: 评论:0
通常在通过php判断一个不存在的资源(比如category、product不存在)时需要通过header返回一个404的状态并显示相应的404页面,在之前的服务器上写法如下:
- header('HTTP/1.1 404 Not Found');
- header('Status: 404 Not Found');
- require('404.php');
- exit();
但是换了新的服务器发现页面上出现一些字母+数字的乱码,检查后发现当前server的请求页面时通信协议的版本和代码中的HTTP/1.1不一致,要想知道当前server的通信协议的名称和版本可以用$_SERVER['SERVER_PROTOCOL'] ,经测试我server的http版本是1.0,所以代码要修改为:
- header('HTTP/1.0 404 Not Found');
- header('Status: 404 Not Found');
- require('error.php');
- exit();
Tags: header 错误 出现乱码
相关文章
- ·header 函式的使用(2013-11-27)
- ·php header中Content-disposition用法详细(2013-12-02)
- ·php Cannot modify header information-headers already sent by解决办法(2013-12-04)
- ·php header中301/404跳转要注意事项详解(2014-01-11)
- ·php中header("Location:xxx.php")跳转问题(2014-01-19)
- ·php header 404跳转错误页面实例(2014-07-21)
- ·PHP Header下载文件在IE文件名中文乱码问题(2014-09-13)
- ·header() 301重定向实现代码(2014-09-18)
- ·php header函数输入图片IE不显示问题(2014-09-20)
- ·Fatal error: Call to undefined function get_header() in(2014-09-21)
- ·php header()函数实现文件下载的文件,提示被破坏不能打开(2014-09-21)
- ·php header请求重写的一个问题(2014-09-21)
- ·PHP利用header跳转失效解决方法(2014-09-22)
- ·直接用php的header发送404错误页面的方法实例(2015-04-09)
- ·PHP header常用URL地址跳转的几种方法(2015-04-11)
- ·PHP 页面编码声明方法详解(header或meta)(2018-09-15)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)