IP+端口号访问web未解决,快疯了!!!!!

IP+端口号访问web未解决,快疯了!!!!!

各位大大:

一、环境描述如下:

windows2003+appserv2.5.9

二、需求如下:

e盘下有it\ lib\ cw\ tw这些网站

不同的网站用不同的端口!!!!

参考了如下网站:http://www.zhaochungang.com/content/show.php?content_id=732
就是解决不了!

httpd.conf配置如下:
#Listen 12.34.56.78:80
Listen 8088
Listen 81
Listen 82
Listen 86
Listen 88



<Directory />
  Options FollowSymLinks ExecCGI Indexes
    AllowOverride None
  # Order deny,allow
  # deny from all
  # Satisfy all
</Directory>



NameVirtualHost localhost:8088
NameVirtualHost localhost:81
NameVirtualHost localhost:82
NameVirtualHost localhost:86
NameVirtualHost localhost:88

<VirtualHost localhost:8088>
ServerAdmin xcsyzxwd@163.com
DocumentRoot d:/AppServ/www/phpmyadmin
ServerName localhost:8088
</VirtualHost>

<VirtualHost localhost:81>
DocumentRoot e:/web/it
ServerName localhost:81
</VirtualHost>

<VirtualHost localhost:82>
DocumentRoot e:/web/lib
ServerName localhost:82
</VirtualHost>

<VirtualHost localhost:86>
DocumentRoot e:/web/tw
ServerName localhost:86
</VirtualHost>

<VirtualHost localhost:88>
DocumentRoot e:/web/cw
ServerName localhost:88
</VirtualHost>

<Directory "d:/AppServ/www/phpmyadmin">
   Options Indexes FollowSymLinks
   AllowOverride None
   Order allow,deny
   Allow from all
</Directory>

<Directory "e:/web/it">
   Options Indexes FollowSymLinks
   AllowOverride None
   Order allow,deny
   Allow from all
</Directory>
<Directory "e:/web/lib">
   Options Indexes FollowSymLinks
   AllowOverride None
   Order allow,deny
   Allow from all
</Directory>
<Directory "e:/web/tw">
   Options Indexes FollowSymLinks
   AllowOverride None
   Order allow,deny
   Allow from all
</Directory>
<Directory "e:/web/cw">
   Options Indexes FollowSymLinks
   AllowOverride None
   Order allow,deny
   Allow from all
</Directory>

出错信息如下:

找不到网页
您要查看的网页可能已被删除、名称已被更改,或者暂时不可用。

--------------------------------------------------------------------------------

请尝试以下操作:

如果您已经在地址栏中输入该网页的地址,请确认其拼写正确。

打开 192.168.0.8:81  主页,然后查找指向您感兴趣信息的链接。
单击后退按钮,尝试其他链接。
单击搜索,寻找 Internet 上的信息。



HTTP 404 - 未找到文件
Internet Explorer


请各位大大帮忙!

把log贴出来
[Mon May 12 14:44:23 2008] [notice] Child 1500: Released the start mutex
[Mon May 12 14:44:24 2008] [notice] Child 1500: Waiting for 64 worker threads to exit.
[Mon May 12 14:44:24 2008] [notice] Child 1500: All worker threads have exited.
[Mon May 12 14:44:24 2008] [notice] Child 1500: Child process is exiting
[Mon May 12 14:44:24 2008] [notice] Apache/2.2.4 (Win32) PHP/5.2.3 configured -- resuming normal operations
[Mon May 12 14:44:24 2008] [notice] Server built: Jan  9 2007 23:17:20
[Mon May 12 14:44:24 2008] [notice] Parent: Created child process 2552
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.0.8 for ServerName
[Mon May 12 14:44:24 2008] [notice] Child 2552: Child process is running
[Mon May 12 14:44:24 2008] [notice] Child 2552: Acquired the start mutex.
[Mon May 12 14:44:24 2008] [notice] Child 2552: Starting 64 worker threads.
[Mon May 12 14:44:24 2008] [notice] Child 2552: Starting thread to listen on port 88.
[Mon May 12 14:44:24 2008] [notice] Child 2552: Starting thread to listen on port 86.
[Mon May 12 14:44:24 2008] [notice] Child 2552: Starting thread to listen on port 82.
[Mon May 12 14:44:24 2008] [notice] Child 2552: Starting thread to listen on port 81.
[Mon May 12 14:44:24 2008] [notice] Child 2552: Starting thread to listen on port 8088.
[Mon May 12 14:44:35 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 14:56:54 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 15:08:21 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 15:08:23 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 15:08:27 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 15:08:31 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
Mon May 12 14:44:35 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 14:56:54 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 15:08:21 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 15:08:23 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 15:08:27 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 15:08:31 2008] [error] [client 192.168.0.8] File does not exist: D:/apache

哪儿的目录指向了这个地方D:/apache?
有这个目录吗?
你的问题是重复设置目录,导致相互覆盖


QUOTE:
原帖由 hmglly 于 2008-5-12 15:19 发表
Mon May 12 14:44:35 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 14:56:54 2008] [error] [client 192.168.0.8] File does not exist: D:/apache
[Mon May 12 15:08:21 ...

我找了半天也没有找到这个目录


QUOTE:
原帖由 hmglly 于 2008-5-12 15:20 发表
你的问题是重复设置目录,导致相互覆盖

好像没有重复设置目录呀!
搜一下你的httpd.conf里面有没有,还有被httpd.conf
include进来的文件里有没有,是肯定要有的,否则那是见鬼了


QUOTE:
原帖由 hmglly 于 2008-5-12 15:34 发表
搜一下你的httpd.conf里面有没有,还有被httpd.conf
include进来的文件里有没有,是肯定要有的,否则那是见鬼了

我要跳楼了!TNND!!!!

直接用默认端口可以访问!!!
'
就是想实现多个端口访问不同目录下的网站就不行!!!!!!!!!郁闷!~!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
那你就启不同的几个apache分开