PHP錯誤:Forbidden You don't have permission to access / on thi_PHP教程

來源:互聯網
上載者:User
今天在測試一個php程式的時候,發現這個問題:

Forbidden

You don't have permission to access / on this server.

開始的時候我是用http://localhost/test.php進行的測試,沒有發現問題,後來要在內網測試一下就要用IP地址進行那個訪問了,如:http://10.10.50.195/test.php,就出現了這個問題。

後來諮詢了一下朋友(php高手),說修改一下php的設定檔httpd.conf。

在原有的位置檔案中找到配置節


Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Satisfy all

修改成


Options FollowSymLinks
AllowOverride None
Order deny,allow
# Deny from all
Allow from all

#允許所有訪問
Satisfy all


還有

#
# 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
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# 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

修改成

#
# 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
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# 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

然後儲存,重啟服務,在訪問就解決了這個問題。

http://www.bkjia.com/PHPjc/372024.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/372024.htmlTechArticle今天在測試一個php程式的時候,發現這個問題: Forbidden You don't have permission to access / on this server. 開始的時候我是用http://localhost/test.php進行的...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.