http://10.2.0.100:90/index.htm打错了,是http://10.2.0.241:90/index.htm

解决方案 »

  1.   

    searching HOSTS file, please add
    90.linuxtest.com 10.2.0.241then run:
    http://90.linuxtest.com:90/index.htm
      

  2.   

    配置文件 httpd.conf有如下设置没?(这个要设置一下的)
    <Directory "/usr/website/90">
        Order allow,deny
        Allow from all
    </Directory>
      

  3.   

    我这样重新设置了一下:
    APACHE的配置文件:Listen 90<Directory "/usr/website/hua">
        Order allow,deny
        Allow from all
    </Directory>
    <VirtualHost 10.2.0.241:90>
      DocumentRoot /usr/website/hua
      ServerName 90.linuxtest.com
    </VirtualHost>然后在WINDOWS中的HOST文件中增加了:
    90.linuxtest.com 10.2.0.241在IE中访问:
    http://90.linuxtest.com:90/index.htm结果:
    找不到网页还是不行,郁闷,为什么啊?
      

  4.   

    /usr/website/hua/下有 index.html吗?
      

  5.   

    改成 Listen 10.2.0.241:90可以了,谢谢。