前几天装一个phpStudy 集成环境,打开测试页面的时候突然出现如下错误: 有一些小总结. 一些小的开发测试在本地开发的话,直接localhost/file  就可以,  如果涉及到大的开发环境,一般是设定虚拟站点直接连接到开发的主目录 Forbidden You don't have permission to access /index.html on this server. 开始我以为我配置出错,花半天时间都没有搞定,今天终于搞定了. 1.  调试phpStudy 其他选项菜单 ---…
在新安装的谷歌游览器里,打不了PHP网站了,错误显示: Forbidden You don't have permission to access / on this server. 原因还是配置权限问题 解决办法: wamp\bin\apache\Apache2.2.21\conf\extra\httpd-vhosts.conf 文件里,找到对应网站的虚拟机,添加或者修改如下(绿色行10-15行) Listen 8023 <VirtualHost *:8023> ServerAdmin we…
Forbidden  You don't have permission to access / on this server.   解决办法 打开 httpd.conf 文件, 将 #   onlineoffline tag - don't remove     Order Deny,Allow     Deny from all     Allow from 127.0.0.1 改成 #   onlineoffline tag - don't remove     Order Allow,D…
Forbidden You don't have permission to access /{you_app_name}on this server. 需要修改两处: wamp\bin\apache\Apache2.4.4\conf\httpd.conf 将其中的 Order Deny,Allow Deny from all Allow from 127.0.0.1 Allow from ::1 Allow from localhost 改为: Order Deny,AllowAllow fr…
今天在测试一个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. 在原有的位置文件…
原文:Forbidden You don't have permission to access / on this server. Forbidden You don't have permission to access / on this server. 当出现此问题的时候,记得修改httpd.conf. 在原有的位置文件中找到配置节 <Directory />     Options FollowSymLinks     AllowOverride None     Order den…
xampp 无论在window 还是在 Mac 如出现以下错误的:通常的解决方式: 具体配置教程可以任意查相关资料既可,(配置子站子大致流程如:开启httpd.conf的inc...httpd-vhosts.conf,然后打开这个文件配置如下: <VirtualHost *:80> ServerAdmin mall@mail.com DocumentRoot "do-Path" ServerName domian.com ServerAlias www.domain.com…
php多站点配置以及Forbidden You don't have permission to access / on this server问题解决 一.总结 一句话总结:我的问题是php的版本问题 php 版本 改变因素 找到问题的原因了,我把php的版本从5.4.45切换成了 5.6.27,切换回来之后就好了,php文件就能解析了,网站就能访问了 和配置实在没有半毛钱关系 收获吧:仔细思考你做了哪些改变因素(在正确和错误之间),我忘记我切换了版本 其实是我没有意识到php版本切换会造成网…
Forbidden You don't have permission to access   问题原因:apache的2.4的版本中 Require all denied 应该变成Require all granted…
Forbidden You don't have permission to access / on this server. 找到 apache 配置文件 httpd.conf 把里面的 <Directory /> AllowOverride none Require all denied </Directory> 改为 <Directory /> AllowOverride none Require all granted </Directory>…