zoukankan      html  css  js  c++  java
  • php自定义404错误

    简介:这是php自定义404错误的详细页面,介绍了和php,有关的知识、技巧、经验,和一些php源码等。

    class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=322981' scrolling='no'>
    一直开发网站始终不知道怎么在php里面自定义404错误页面,今天终于弄明白了,是很简单的。
    1. php环境下的www文件下建立一个自己建立的404错误页面 我定义为404.php 里面包含一些比较友好的图片。
    2. 创建一个.htaccess文件,内容为:errorDocument 404 /404/404.php(为你自定义的404错误页面地址),保存。
    3. 查看你的APACHE服务器的rewrite模块有没有开启,在http.conf里查找LoadModule rewrite_module modules/mod_rewrite.so,去除前面的#,保存并重启服务器
    4. 现在再打开一个没有的界面 即可出现你自定义的404错误页面。

    刚开始的不知道为什么图片不显示,后来才知道原来是相对路径不对,最后改为绝对路径即正确显示。

    其实后来才知道原来.htaccess原来与那么多的错误页面相关的都可以自定义设置。

    以下为转来:http://hi.baidu.com/designwow/blog/item/c82a6edc49bb9de176c638bd.html

    .htaccess 文件 (Hypertext Access file) 是Apache Web服务器的一个非常强大的配置文件,对于这个文件,Apache有一堆参数可以让你配置出几乎随心所欲的功能。.htaccess 配置文件坚持了Unix的一个文化――使用一个ASCII 的纯文本文件来配置你的网站的访问策略。

    这篇文章包括了16个非常有用的小技巧。另外,因为.htaccess 是一个相当强大的配置文件,所以,一个轻微的语法错误会造成你整个网站的故障,所以,在你修改或是替换原有的文件时,一定要备份旧的文件,以便出现问题的时候可以方便的恢复。

    1. 使用.htaccess 创建自定义的出错页面。对于Linux Apache来说这是一项极其简单的事情。使用下面的.htaccess语法你可以轻松的完成这一功能。(把.htaccess放在你的网站根目录下)

    ErrorDocument 401 /error/401.php
    ErrorDocument 403 /error/403.php
    ErrorDocument 404 /error/404.php
    ErrorDocument 500 /error/500.php

    2. 设置网站的时区

    SetEnv TZ America/Houston

    3. 阻止IP列表
    有些时候,你需要以IP地址的方式阻止一些访问。无论是对于一个IP地址还是一个网段,这都是一件非常简单的事情,如下所示:

    allow from all
    deny from 145.186.14.122
    deny from 124.15

    Apache对于被拒绝的IP会返回403错误。

    4. 把一些老的链接转到新的链接上――搜索引擎优化SEO

    Redirect 301 /d/file.html http://www.htaccesselite.com/r/file.html

    5. 为服务器管理员设置电子邮件。

    ServerSignature EMail
    SetEnv SERVER_ADMIN default@domain.com

    6. 使用.htaccess 访止盗链。如果你网站上的一个图片被别的N多的网站引用了,那么,这很有可能会导致你服务器的性能下降,使用下面的代码可以保护某些热门的链接不被过多的引用。

    Options +FollowSymlinks
    # Protect Hotlinking
    RewriteEngine On
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http://(www.)?domainname.com/ [nc]
    RewriteRule .*.(gif|jpg|png)$ http://domainname.com/img/hotlink_f_o.png [nc]

    7. 阻止 User Agent 的所有请求

    ## .htaccess Code :: BEGIN
    ## Block Bad Bots by user-Agent
    SetEnvIfNoCase user-Agent ^FrontPage [NC,OR]
    SetEnvIfNoCase user-Agent ^Java.* [NC,OR]
    SetEnvIfNoCase user-Agent ^Microsoft.URL [NC,OR]
    SetEnvIfNoCase user-Agent ^MSFrontPage [NC,OR]
    SetEnvIfNoCase user-Agent ^Offline.Explorer [NC,OR]
    SetEnvIfNoCase user-Agent ^[Ww]eb[Bb]andit [NC,OR]
    SetEnvIfNoCase user-Agent ^Zeus [NC]

    Order Allow,Deny
    Allow from all
    Deny from env=bad_bot

    ## .htaccess Code :: END

    8. 把某些特殊的IP地址的请求重定向到别的站点

    ErrorDocument 403 http://www.youdomain.com
    Order deny,allow
    Deny from all
    Allow from 124.34.48.165
    Allow from 102.54.68.123

    9. 直接找开文件而不是下载 � 通常,我们打开网上文件的时候总是会出现一个对话框问我们是下载还是直接打开,使用下面的设置就不会出现这个问题了,直接打开。

    AddType application/octet-stream .pdf
    AddType application/octet-stream .zip
    AddType application/octet-stream .mov

    10. 修改文件类型 � 下面的示例可以让任何的文件都成为PHP那么被服务器解释。比如:myphp, cgi,phtml等。

    ForceType application/x-httpd-php
    SetHandler application/x-httpd-php

    11. 阻止存取.htaccess 文件

    # secure htaccess file

    order allow,deny
    deny from all
    12. 保护服务器上的文件被存取

    # prevent access of a certain file order allow,deny
    deny from all
    13. 阻止目录浏览

    # disable directory browsing
    Options All -Indexes

    14. 设置默认主页

    # serve alternate default index page
    DirectoryIndex about.html

    15. 口令认证 � 你可以创建一个文件用于认证。下面是一个示例:

    # to protect a file

    AuthType Basic
    AuthName “Prompt”
    AuthUserFile /home/path/.htpasswd
    Require valid-user

    # password-protect a directory
    resides
    AuthType basic
    AuthName “This directory is protected”
    AuthUserFile /home/path/.htpasswd
    AuthGroupFile /dev/null
    Require valid-user

    16. 把老的域名转像新的域名

    # redirect from old domain to new domain
    RewriteEngine On
    RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=301,L]

    例子:
    我现在要在127.0.0.1这个IP下面再做一个站,原有的站是www.abc.com
    现在我想再建一个www.123.com的网站。
    于是我先在www.abc.com的根目录建立一个123的文件夹,然后制作了一个.htaccess文件。

    DirectoryIndex default.php index.htm index.php index.html default.htm default.html index.shtml default.shtml
    RewriteEngine On
    Options All -Indexes
    php_value upload_max_filesize 20M
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^(www.)?123.com$
    RewriteCond %{REQUEST_URI} !^/123/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /123/$1
    RewriteCond %{HTTP_HOST} ^(www.)?123.com$
    RewriteRule ^(/)?$ 123/index.php [L]
    ErrorDocument 401 /404.htm
    ErrorDocument 403 /404.htm
    ErrorDocument 404 /404.htm
    ErrorDocument 500 /404.htm

    DirectoryIndex default.php index.htm index.php index.html default.htm default.html index.shtml default.shtml
    这个是定义默认首页的
    RewriteEngine On
    Options All -Indexes
    php_value upload_max_filesize 20M

    这个是修改程序上传文件大小的

    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^(www.)?123.com$ 这个是域名
    RewriteCond %{REQUEST_URI} !^/123/ 这个是目录设置
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /123/$1 目录设置
    RewriteCond %{HTTP_HOST} ^(www.)?123.com$ 域名
    RewriteRule ^(/)?$ 123/index.php [L] 默认访问的文件,可以修改成别的
    ErrorDocument 401 /404.htm
    ErrorDocument 403 /404.htm
    ErrorDocument 404 /404.htm
    ErrorDocument 500 /404.htm
    这些是错误文档定义。
    .htaccess文件很强大的,可以实现很多功能,甚至可以定义php参数,比如上传文件大小,PHP程序运行时间等等,只要善于发掘,就能够实现更多的功能。

    “php自定义404错误”的更多相关文章 》

    爱J2EE关注Java迈克尔杰克逊视频站JSON在线工具

    http://biancheng.dnbcw.info/php/322981.html pageNo:16
  • 相关阅读:
    HDU-1102 Constructing Roads ( 最小生成树 )
    POJ-1287 Networking ( 最小生成树 )
    HDU-1272 小希的迷宫 ( 并查集 )
    Java基本数据类型、关键字
    观察者模式
    Android系统启动过程分析
    Activity启动过程源码分析(Android 8.0)
    Okhttp解析—Okhttp概览
    Okhttp解析—Interceptor详解
    Okhttp源码分析--基本使用流程分析
  • 原文地址:https://www.cnblogs.com/ooooo/p/2255933.html
Copyright © 2011-2022 走看看