在apache伺服器中出現403 Forbidden錯誤時的解決方案。有需要的朋友,可以參考下。
配置了下虛擬機器主機,localhost開啟發現錯誤:
HTTP 錯誤 403 - 禁止訪問,即403 Forbidden:You don't have permission to access / on this server.
可能是許可權不足引起的問題。
解決方案:
開啟apache的設定檔httpd.conf,逐行檢查。
找到:
程式碼範例:
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
由於配置了php後,此處“Deny from all”為拒絕一切串連。
把此行修改為 “Allow from all”,即可解決問題。
修改後的代碼為:
程式碼範例:
Options FollowSymLinks
AllowOverride None
Order deny,allow
allow from all
瀏覽器裡開啟http://localhost,問題解決。
總結:
在apache伺服器中,遇到403禁止訪問時,重點關注下apache的httpd.conf設定檔中,是否有“Deny from all”這樣的代碼。
這個可能是修改了某些設定檔後,重啟apache,被自動更改的。
附,另外一個apache 403錯誤的例子。
apache 403錯誤,顯示資訊如下:
您無權查看該網頁
您可能沒有許可權用您提供的憑據查看此目錄或網頁
如果您確信能夠查看該目錄或網頁,請嘗試使用 192.168.1.5 首頁上所列的電子郵件地址或電話與網站聯絡。
可以單擊搜尋,尋找 Internet 上的資訊。
HTTP 錯誤 403 - 禁止訪問
Internet Explorer
去掉顯示友好資訊的鉤後顯示Forbidden You don't have permission to access \ on this server.
檢查了一遍設定檔httpd.conf,找到這麼一段:
程式碼範例:
Options FollowSymLinks
AllowOverride None
Order deny,allow
deny from all
Satisfy all
然後試著把deny from all中的deny改成了allow,儲存後重起了apache,訪問測試網站完全正常了。
APACHE升級到2.2版本之後,提供和支援不少模組的支援,效能和安全上也有不少改進。
以前配置好apache的httpd.conf之後,即可使用。
但現在必須額外對這個檔案進行其他方面的配置,不然會出現 http 403許可權問題錯誤。
解決方案。
以下為httpd.conf檔案的其中一段原代碼。
把下面代碼紅色標誌變更:
程式碼範例:
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# [url]http://httpd.apache.org/docs/2.2/mod/core.html#options[/url]
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride all
#
# Controls who can get stuff from this server.
#
# onlineoffline tag - don't remove
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
紅色部分更改為 Allow from all ,也就是所有訪問允許通過。
以上就介紹瞭解決php伺服器(apache)下403 Forbidden錯誤的方法,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。