php自訂404錯誤

來源:互聯網
上載者:User

簡介:這是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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.