zoukankan      html  css  js  c++  java
  • 【转】wamp出现You don’t have permission to access/on this server提示

    本地搭建wamp,输入http://127.0.0.1访问正常,当输入http://localhost/,apache出现You don't have permission to access/on this server.的提示,如何解决?

    • 找到httpd.conf,用记事本打开httpd.conf,然后将
    1. <Directory />
    2.     Options FollowSymLinks
    3.     AllowOverride None
    4.     Order deny,allow
    5.     Deny from all
    6. </Directory>

    这里改成:

    1. <Directory />
    2.     Options FollowSymLinks
    3.     AllowOverride None
    4.     Order deny,allow
    5.     Allow from all
    6. </Directory>

     还有一处将下面

    1. # onlineoffline tag - don't remove
    2. Order Deny,Allow
    3. Deny from all  
    4. Allow from 127.0.0.1
    5. </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:wampaliasphpmyadmin.conf    //这个就是你的wamp的安装目录下的内容,用记事本打开

    修改成这样:

    1. <Directory "c:/wamp/apps/phpmyadmin3.5.1/">
    2.     Options Indexes FollowSymLinks MultiViews
    3.     AllowOverride all
    4.     Order Deny,Allow
    5.     Allow from all
    6.     Allow from 127.0.0.1
    7. </Directory>

    修改保存后,重启wamp ,搞定收工!

    from:https://blog.csdn.net/hong0220/article/details/40262729

  • 相关阅读:
    表单的重复提交问题
    js日期操作
    spring data jpa
    Excel Xll开发资料
    Excel DNA学习笔记一
    error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏的解决方案
    点进去勿喷
    hdu1305(字典树)
    2018 Multi-University Training Contest 3
    hihocoder 1014(字典树)
  • 原文地址:https://www.cnblogs.com/xuan52rock/p/8964307.html
Copyright © 2011-2022 走看看