码迷,mamicode.com
首页 > 数据库 > 详细

WampServer出现You don’t have permission to access/on this server提示

时间:2017-05-14 23:39:13      阅读:336      评论:0      收藏:0      [点我收藏+]

标签:mission   记事本   remove   rem   保存   cal   directory   index   start   

WampServer出现You don’t have permission to access/on this server提示

本地搭建WampServer,输入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>

将Deny from all  改为:Allow from all  ,然后重新启动所有服务。

 还有一处将下面

  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:/wamp/alias/phpmyadmin.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 

WampServer出现You don’t have permission to access/on this server提示

标签:mission   记事本   remove   rem   保存   cal   directory   index   start   

原文地址:http://www.cnblogs.com/jcs-cs-s/p/6854248.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!