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

晕死,成功了!!!!
错误的:
<VirtualHost localhost:81>
        ServerAdmin abc@163.com
        DocumentRoot E:/web/it
        ServerName localhost:81
        ErrorLog D:/AppServ/Apache2.2/logs/error.log
        CustomLog logs/dummy-host2.appservnetwork.com-access_log common
</VirtualHost>



把localhost改为*即可!!!!!
TNND的!!!!!1天多的时间竟是这么个东西!!!!!!!!!!

正确的:
<VirtualHost *:81>
        ServerAdmin abc@163.com
        DocumentRoot E:/web/it
        ServerName localhost:81
        ErrorLog D:/AppServ/Apache2.2/logs/error.log
        CustomLog logs/dummy-host2.appservnetwork.com-access_log common
</VirtualHost>
my gud
很多问题都是这样,找到原因才觉得竟然这么简单
恭喜了
能不能问一句:
为什么要用这么多端口呢?

反正我是极不喜欢在url上加端口号的,我们的服务器上几十个站点我都是用同一个80端口,通过域名来区分。另外,即使局域网里面也可以自己设置一下用域名来访问啊。
各有各的方法
各有各的喜好
学习了~~  
VirtualHost用*:80而不要用localhost:80
学习了,呵呵,解决了就好.也让后来者以后少走弯路