php header 404跳转错误页面实例
发布:smiling 来源: PHP粉丝网 添加日期:2014-07-21 11:33:26 浏览: 评论:0
404页面是一种友好的错误提示页面,在php中我们可以利用php,apache,hatcess三种方法来实现向浏览器发送404错误页面状态,下面我来介绍其它的php header函数实现404错误页面的具体方法.
先来了解header函数
header() 函数向客户端发送原始的 HTTP 报头,header(string,replace,http_response_code)
php header 404写法,代码如下:
header("HTTP/1.1 404 Not Found");exit;
如果以上代码不凑效,可以试试以下代码:
header("Status: 404 Not Found");
上面只是404状态页面很难看,如果我们要验证需要如下操作:
- @header("http/1.1 404 not found");
- @header("status: 404 not found");
- include("404.html");//跳转到某一个页面,推荐使用这种方法
- exit();
这样不但有错误提示信息同时还会有一个漂亮的页面,我在实例应用中的一个实例,代码如下:
- function getref()
- {
- $url = @$_SERVER['HTTP_REFERER'];
- if( !emptyempty( $url ) )
- {
- if( !strstr($url ,'phpfensi.com' ) && !strstr($url,'phpfensi.com'))
- {
- @header("http/1.1 404 not found");
- @header("status: 404 not found");
- include("404.html");//跳转到某一个页面,推荐使用这种方法
- exit();
- }
- }
- else
- {
- @header("http/1.1 404 not found");
- @header("status: 404 not found");
- include("404.html");//跳转到某一个页面,推荐使用这种方法
- exit();
- }
- }
如果讲到apache那就简单多了,ErrorDocument 404 /404.html
注意了,如果你写好之后一定要利用专题404错误页面工具进行测试,否则可能返回200就不好了,一定要看到是404状态才行.
Tags: header 404跳转 错误页面实例
相关文章
- ·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 404错误包含文件出现乱码(2013-12-04)
- ·php header中301/404跳转要注意事项详解(2014-01-11)
- ·php中header("Location:xxx.php")跳转问题(2014-01-19)
- ·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)