安装wamp后,localhost访问报错“You don't have permission to access / on this server.”

今天装了一个wamp,在本地测试了一下,发现使用http://localhost/报错403,提示内容如下:“You don‘t have permission to access /
on this server.”。用127.0.0.1访问正常,phpMyAdmin也是同样的问题。

在网上搜索了一下有很多都是出现这个问题,但是不是不详细就是没找到解决办法。在此做一下记录,我是安装一路下一步所以安装目录都是默认的。

首先修改Apache,在wampserver下左键,Apache下有一个httpd.conf,或者是C:\wamp\bin\apache\Apache2.2.21\conf目录下的httpd,记住在conf目录是httpd不是httpd.conf,这个是容易搞错的地方。

233-234行做一下修改

#   onlineoffline tag - don‘t remove
    Order Deny,Al
    Deny from all
    Allow from 127.0.0.1



修改成

#   onlineoffline tag - don‘t remove
    Order Deny,Al
    Allow from all

记住保存哦,

以下有图片展示比较方便:

下面是修改phpMyadmin,在C:\wamp\alias下,打开phpmyadmin在下面有一段

<Directory "c:/wamp/apps/phpmyadmin3.4.10.1/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1



改成

<Directory "c:/wamp/apps/phpmyadmin3.4.10.1/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
    Allow from all

保存,重启一下就可以了

安装wamp后,localhost访问报错“You don't have permission to access / on this server.”

时间: 2024-10-05 05:41:39

安装wamp后,localhost访问报错“You don't have permission to access / on this server.”的相关文章

启动wamp报错 You don&#39;t have permission to access / on this server

安装完wamp之后,安装网上的教程设置虚拟路径,出现了问题,同样的问题由不同的原因导致. 1.httpd.conf中添加Listen 相应的端口,我的是8080 2.httpd.conf去掉Include conf/extra/httpd-vhosts.conf前面的#. 3.然后调用localhost,就出现下面的错误: Forbidden You don't have permission to access /on this server. 解决方法:在conf\extra下面的httpd

wamp报错You don&#39;t have permission to access on this server

打开httpd.conf  将<Directory /> </Directory>的内容替换成 Options FollowSymLinksAllowOverride NoneOrder deny,allowDeny from all 也就是 <Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all</Directory> vhost配置: &

Apache(httpd) 报错You don&#39;t have permission to access /on this server.

项目需要,增加个访问端口,指向不同目录. 但是一直报"You don't have permission to access /on this server."错误 配置文件语法检查: #/etc/init.d/httpd configtest 或 apachectl -t 直接输入:/etc/init.d/httpd 会新显示选项 [[email protected] ~]# /etc/init.d/httpd  Usage: httpd {start|stop|restart|co

mac系统中搭建apache+mysql+php的开发环境,安装mysql后,登录报错:mac ERROR 1045 (28000): Access denied for user &#39;root&#39;@&#39;localhost&#39; (using password: NO)

php新手在mac系统中搭建apache+mysql+php的开发环境(按照这篇博客来操作的:http://my.oschina.net/joanfen/blog/171109?fromerr=xvCsafCe),在安装配置mysql完毕后,登录mysql,报错:mac ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO),折腾很久,终于解决,随手记录下,备忘. 解决方法: 第一步:如

安装pytest-allure-adaptor后,运行报错:AttributeError: module &#39;pytest&#39; has no attribute &#39;allure&#39;

原因:因为pytest-allure-adaptor库基本被python3放弃了,运行很不友好,反正我运行就是报错 解决方法: 先卸载:pip uninstall pytest-allure-adaptor 再安装:pip allure-pytest 然后再去对应case的文件夹下面cmd里面运行: pytest -s -q --alluredir  report  (可以改为你想设的路径,如果是report默认当前目录下),就会生成report文件夹了 安装pytest-allure-adap

关于在biweb 中安装完成后 首页上方报错问题的解决

在利用biweb进行网站开发的时候 首先得安装biweb    安装就是下一步,,,下一步....下一步   最后就成功了 .但是有种情况我总是竟让遇到,而已有的人安装会遇到 有的人安装就不会遇到,后来上网查了一下才知道是怎么回事. 原来是php版本的问题 由于自己计算机上的php版本太高,biweb 的版本 不是太高,所以安装后会产生报错  下面就给大家截图看错,这个是主页上方的错误,相信很多人都遇到过 这个错我找了半天 ,才找到了解决方法 ,方法就是 找到 admin/config/conf

windows使用nvm安装nodejs后升级npm报错

新装一台电脑,安装nvm,使用nvm install安装nodejs,然后升级npm到特定版本 npm i -g [email protected]报错 怎么折腾都不成功.网上也没找到解决办法.后来我删掉nvm以及之前安装的nodejs.先去nodejs官网随便下载一个nodejs安装之后,再装nvm,勾选用nvm管理已安装的nodejs版本.然后再使用nvm安装新的nodejs版本以及升级npm就可以了,不会报错了.不明所以 原文地址:https://www.cnblogs.com/coder

linux下weblogic11g安装成功后,启动报错Getting boot identity from user

<2015-7-1 下午05时46分33秒 CST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050 > <2015-7-1 下午05时46分39秒 CST> <Info> <Security> <BEA-090065> <Gett

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,然后将 <Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all </D