apache 提示You don't have permission to access /test.php on this server.怎样解决

原文:apache 提示You don't have permission to access /test.php on this server.怎样解决

关键字: Apache   403  Forbidden

系统配置:

操作系统:Red Hat Linux 6.2

Web服务器:Apache 3.1.1+jakarta-tomcat 3.1.1

数据库服务器:oracle 8i

    Apache服务器是目前应用最多的web服务器,据统计在世界上的服务器中有超过一半采用Apache服务器.关于它的好处,您可以自己到http://www.apache.org/上去看。

    今天我们的服务器出了一点儿问题:任何访问都会返回一个403的错误:

  Forbidden 

  You don't have permission to access  on this server。

  不对呀,原来还好好的,在排除了目录的权限等的问题外,我几乎翻遍了系统的所有文件,尤其是/etc/httpd/conf下的所有配置文件,因为我已经将access.conf,srm.conf文件加入到httpd.conf文件中,同时在httpd.conf文件的最后加上了一句:

Include /etc/httpd/conf/tomcat.conf,以便将tomcat和apache连接起来。

在经过了一番思考之后,我认为问题肯定出在httpd.conf文件中,于是就又重新检查httpd.conf文件,终于让我发现了其中有这样一段:

<Files ~>
AllowOverride AuthConfig FileInfo Indexs Limit Options
Order allow ,deny
Deny from all-----------------注意:就是这儿!!--->把这行去掉或注释掉就行!!!
</Files>

心头一阵狂喜,哈哈,想起赵本山说的一句话“小样儿,脱了马甲我也认得你”,于是改成:

Allow from all,重新启动服务器,咦,还是不行?头开始大了,心想:今儿个我是载这儿了。又翻了n多遍httpd.conf文件几乎都要背下来了还找不到问题。也怪,突然就想起来了,www.apache.org不是有个问题数据库吗,几乎所有的问题都可以在上面找到答案,于是进入http://bugs.apache.org/,查找关键字forbidden,果然就让我查到了,原来是我们一位同事想做一个虚拟主机,用了linux的配置工具linuxconf,这个工具因为版本的问题,会导致httpd.conf文件的修改,其实我只要将上面的那一段去掉就可以万事大吉了

最终总结经验:遇到事情首先要想到到软件所在的网站上找答案,免得浪费时间。

写此文的目的:以我为反面教材,遇到问题不要自己总是认为自己可以解决,而不到专业网站上请教。很多的网站已经有了非常完善的faq,基本上可以满足大家平时的需求,比如pb的要多到www.sybase.com上走走,java到http://developer.java.sun.com上转转,vc到坏孩子家溜溜。其实一些高手不是他们有多聪明,而是他们懂得如何从有用的地方找到自己想要的东西。

我也象他那样找到了希望,也没管用。后来我乐了,但后来我又乐不起来了。那着在我这里不行啊?谁能帮我?我找!我找!不行就自救。

===================================================
===================================================
解决Apache下403 Forbidden错误

正 文:
    今天在公司电脑上安装Apache,版本2.2.8,装完刚测试可以;配置了下php的php.in文件再次localhost打开发现错误:HTTP 错误 403 - 禁止访问,即403 Forbidden:You don't have permission to access / on this server.权限又不够了?

 

    马上打开apache的配置文件httpd.conf,逐行检查。在大约快一半的地方有以下这段代码:

 

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>

 

    发现了吧。由于配置了php后,这里的“Deny from all”已经拒绝了一切连接。把该行改成“allow from all”,修改后的代码如下,问题解决。

 

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    allow from all
</Directory>

 

    再次在浏览器里打开http://localhost,显示it works!

 

    总结:如果你也发生了这样的403禁止访问,不妨注意下apache的httpd.conf配置文件里有“Deny from all”这行的代码处,看看是不是哪里被系统悄悄地修改了。

 

时间: 2024-12-08 10:56:56

apache 提示You don't have permission to access /test.php on this server.怎样解决的相关文章

apache You don&#039;t have permission to access /test.php on this server解决方法_Linux

键字: Apache   403  Forbidden 系统配置: 操作系统:Red Hat Linux 6.2 Web服务器:Apache 3.1.1+jakarta-tomcat 3.1.1 数据库服务器:oracle 8i Apache服务器是目前应用最多的web服务器,据统计在世界上的服务器中有超过一半采用Apache服务器.关于它的好处,您可以自己到http://www.apache.org/上去看. 今天我们的服务器出了一点儿问题:任何访问都会返回一个403的错误: 复制代码 代码如

You don&#039;t have permission to access / on this server提示 求解决办法~

提示You don't have permission to access / on this server..Apache定义了默认对网站根的访问权限. # Each directory to which Apache has access can be configured with respect # to which services and features are allowed and/or disabled in that # directory (and its subdire

Apache出现You dont have permission to access / on this server解决方法

由于对环境不了解在配置好环境之后Apache出现You don't have permission to access / on this server. 提示  代码如下 复制代码 <Directory />     Options FollowSymLinks     AllowOverride None     Order deny,allow     Deny from all </Directory> 解决办法 把 Deny from all 中的 Deny 改成了All

You don’t have permission to access /index.php on._Linux

今天在测试 PHP集成环境 Apache服务器时,一切正常,在转换虚拟目录时,突然出现错误提示"You don't have permission to access /index.php on."无论如何都不能正常浏览,再切换回原目录时,显示正常,只要切换虚拟目录,问题依旧. 其实这里是由于 httpd-conf 里面的配置问题,打开httpd-conf:逐行检查.在大约快一半的地方有以下这段代码: 复制代码 代码如下: <Directory /> Options Fol

WampServer设置apache伪静态出现404 not found及You don&#039;t have permission to access / on this server解决方法分析[原创]_服务器其它

本文实例讲述了WampServer设置apache伪静态出现404 not found及You don't have permission to access / on this server解决方法.分享给大家供大家参考.具体如下: 出现404 not found 时: 确保LoadModule rewrite_module modules/mod_rewrite.so开启 然后 复制代码 代码如下: <Directory />     Options FollowSymLinks    

关于You don t have permission to access / on this server提示总结

仔细检查了一遍配置文件httpd.conf,找到这么一段:  代码如下 复制代码 <Directory />     Options FollowSymLinks     AllowOverride None     Order deny,allow     deny from all     Satisfy all </Directory> 然后试着把deny from all中的deny改成了allow,保存后重起了apache,然后再一测试我的网页 apache 解决Apac

You don&amp;#39;t have permission to access /nagios/ on this server

  You don't have permission to access /nagios/ on this server  解决: chmod 777 nagios http://IP/nagios 出现欢迎界面  1.  其实这种错误就是提示你没有权限访问nagios这项服务.造成这种报错的原因有多种,可能是文件权限你没有改成777,也可能是你httpd.conf这个配置文件有问题等,但还有一个问题是你想不到的.就是系统环境,注意访问nagios页面,这个nagios页面需要php支持.如果

PHP错误:Forbidden You don&amp;#39;t have permission to access / on this server.

原文:PHP错误:Forbidden You don't have permission to access / on this server. 今天老大让在xp下搭建一个FTP服务器,一波三折,最后终于在老大的帮助下搞定了... 其中通过ip访问的时候 提示 Forbidden You don't have permission to access / on this server. 找到一个解决方法,特此记录   php的配置文件httpd.conf. 在原有的位置文件中找到配置节 <Dir

PHP错误:Forbidden You don&#039;t have permission to access / on this server

 今天在测试一个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. 在原有的位