php中header自定义404状态错误页面
发布:smiling 来源: PHP粉丝网 添加日期:2014-03-05 13:47:50 浏览: 评论:0
404页面就是一个告诉搜索引擎这个页面不存在了,同时也提示用户可以选择其它的操作了,下面我来给没有apache操作权限朋友介绍php中自定义404页面的操作方法.
实例代码如下:
- @header("http/1.1 404 not found");
- @header("status: 404 not found");
- echo 'echo 404';
- exit();
加载一个404错误页面
实例代码如下:
- @header("http/1.1 404 not found");
- @header("status: 404 not found");
- include("../../404.htm");
- exit();
也可以在站点中加入.htaccess,实例代码如下:
- errordocument 404 /404.html
如果有apahce配置权限,我们可以修改 httpd.conf,找到:
实例代码如下:
- #ErrorDocument 500 "The server made a boo boo."
- #ErrorDocument 404 /missing.html
- #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
- #ErrorDocument 402 xxxxxxx
修改为
实例代码如下:
- ErrorDocument 404 /404.htm
Tags:
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)