apach2.2.4配置虚拟主机后不能访问,请问这是什么问题

apach2.2.4配置虚拟主机后不能访问,请问这是什么问题

安装apache
# ./configure --enable-so \
    --enable-rewrite=share \
    --enable-proxy=share \
    --enable-proxy-ajp=share \
    --enable-dav=share
以上是安装时的参数。

开启了httpd.cnf中对虚拟主机配置文件那行Include conf/extra/httpd-vhosts.conf

先是想整合tomcat的配置,可以访问并成功了. 以下是配置
<VirtualHost *:80>
  ServerAdmin admin@easyea.com
  DocumentRoot /usr/local/jakarta-tomcat-5.0.28/webapps/ROOT/
  ProxyPass / ajp://localhost:8009/
  ProxyPassReverse / ajp://localhost:8009/
  ServerName localhost
  ErrorLog /data/logs/patch.com-error_log
  CustomLog /data/logs/patch.com-access_log common
</VirtualHost>


后想关闭tomcat做个下载。想只用apache跟tomcat没关系了,但不行,不能访问。以下是配置
<VirtualHost *:80>
  ServerAdmin     admin@zg.mop.com
  DocumentRoot    /data/GOT/www/
  ServerName      localhost
  ErrorLog        /data/logs/patch-error.log
  CustomLog       /data/logs/patch-access.log common
</VirtualHost>
不能正常访问

报错是HTTP 403(禁止访问)
apache错误日志:
[Thu Apr 26 10:53:15 2007] [error] [client 10.10.10.211] client denied by server configuration: /data/GOT/www/1.txt
[Thu Apr 26 10:53:41 2007] [error] [client 10.10.10.211] client denied by server configuration: /data/GOT/www/1.txt
搜索:
Directory /
看看是不是有Deny的操作。
是在主配置文件里吗。
虚拟主机配置文件里httpd-vhosts.conf, 没有

httpd.conf里有以下几行
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>
明白了,谢谢您。

谢谢

您有msn或者QQ吗,以后有问题好能随时请教
看个人资料之中的,不过我会尝试转变为收费客户,呵呵。