我用dede做的网站
用http://localhost/ 或http://127.0.0.1
可以访问
用我本机的ip 地址就访问不了,如http://192.168.0.111最可能的原因是:
未连接到 Internet。 
该网站遇到了问题。 
在地址中可能存在键入错误

解决方案 »

  1.   

    在httpd.conf中增加Virtual Host后重启apache
    代码如下:
    NameVirtualHost 192.168.0.111#
    # VirtualHost example:
    # Almost any Apache directive may go into a VirtualHost container.
    # The first VirtualHost section is used for requests without a known
    # server name.
    #
    <VirtualHost 192.168.0.111>
    #   ServerAdmin [email protected]
        DocumentRoot 您的网页所在目录的绝对路径
        ServerName 192.168.0.111
    #   ErrorLog logs/dummy-host.example.com-error_log
    #   CustomLog logs/dummy-host.example.com-access_log common
    </VirtualHost>
      

  2.   

    端口的问题,还有就是服务器的防火墙你看关了没有~http://192.168.0.111:8080
      

  3.   


    难道IP不对??你ipconfig 一下...