apache You don’t have permission to access/on

本地搭建wamp,輸入http://127.0.0.1訪問正常,當輸入http://localhost/,apache出現You don't have permission to access/on this server.的提示,如何解決?php

找到httpd.conf,用記事本打開httpd.conf,而後將apache

<Directory />app

    Options FollowSymLinkside

    AllowOverride Nonethis

    Order deny,allowserver

    Deny from allrem

</Directory>io

這裏改爲:方法

<Directory />wamp

    Options FollowSymLinks

    AllowOverride None

    Order deny,allow

    Allow from all

</Directory>

 還有一處將下面

# onlineoffline tag - don't remove

Order Deny,Allow

Deny from all  

Allow from 127.0.0.1

</Directory>

將Deny from all  改成:Allow from all  ,而後從新啓動全部服務。

如今打開localhost或127.0.0.1時發現能夠訪問了,但訪問phpmyadmin時候,出現「You don't have permission to access /phpmyadmin/ on this server.」的提示。

解決方法,打開以下文件:

C:\wamp\alias\phpmyadmin.conf    //這個就是你的wamp的安裝目錄下的內容,用記事本打開

修改爲這樣:

<Directory "c:/wamp/apps/phpmyadmin3.5.1/">

    Options Indexes FollowSymLinks MultiViews

    AllowOverride all

    Order Deny,Allow

    Allow from all

    Allow from localhost ::1 127.0.0.1

</Directory>

修改保存後,重啓wamp ,搞定收工!

相關文章
相關標籤/搜索