000webhost主机上定制404错误页面

michael
michael
管理员
194
文章
0
粉丝
技术分享评论2,896字数 596阅读模式

国外主机商000webhost提供免费的空间,最大的好处是完全没有广告,这个或许大家都知道了。功能上嘛,个人感觉还是不错的,就是不能一次性上传大量文件。



里面有一个可以自定义404错误页面,可是一直一来在控制面板里面也没有找到这个选项。刚才在网上查了一些资料,总算可以自定义404错误页面了。


第一步:新生成error.php文件,代码如下:

<?php



$status = $_SERVER['REDIRECT_STATUS'];

$codes = array(

        403 => array('403 Forbidden', 'The server has refused to fulfill 

your request.'),

        404 => array('404 Not Found', 'The document or file requested 

was not found.'),

        405 => array('405 Method Not Allowed', 'The method specified in 

the Request-Line is not allowed for the specified resource.'),

        408 => array('408 Request Timeout', 'Your browser failed to send 

a request in the time allowed by the server.'),

        500 => array('500 Internal Server Error', 'The request was 

unsuccessful due to an unexpected condition encountered by the 

server.'),

        502 => array('502 Bad Gateway', 'The server received an invalid 

response from the upstream server while trying to fulfill the 

request.'),

        504 => array('504 Gateway Timeout', 'The upstream server failed 

to send a request in the time allowed by the server.')

        );

        

$title = $codes[$status][0];

$message = $codes[$status][1];

if ($title == false || strlen($status) != 3) {

    $message = 'Please supply a valid status code.';

}



echo '<p><h1>' . $title . '</h1></p>' . 

     '<p>' . $message . '</p>'; 

?>

第二步:新生成一个 .htaccess 文件,复制以下3行代码

ErrorDocument 403 /error.php

ErrorDocument 404 /error.php

ErrorDocument 500 /error.php


第三步:把以上新生成的2个文件上传到你的空间根目录下面。

注意:放在 public_html 目录的里面(根目录是public_html)



第四步:访问你的网站(访问你网站下的不存在的页面),是不是出现了404错误页面了?



搞定!哈哈



当然,你也可以自己定制要显示的404错误页面信息,下面是我自己网站的404错误页面

http://www.taochang/abcdefg/ 哈哈 

? Copyright Birdol.Com 2006-2014.

继续阅读《000webhost主机上定制404错误页面》的全文内容...

分类: 技术分享 | Tags: | 添加评论(2)


最新评论:

相关文章:

欢迎转载,请保留出处,谢谢!

我的微信
这是我的微信扫一扫
weinxin
我的微信
微信号已复制
我的微信公众号
我的微信公众号扫一扫
weinxin
我的公众号
公众号已复制
 
michael
  • 本文由 michael 发表于2012年5月7日 21:31:13
  • 转载请务必保留本文链接:https://94v5.cn/1618.html
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定

拖动滑块以完成验证