无法使用ip访问localhost
我使用eclipse完成了一个小型Web开发项目。当我尝试在带有url的浏览器上运行它时,它运行良好localhost:8080/myproject/home.html。但是,如果我想在另一台机器(笔记本电脑,手机等使用相同的wifi)上访问它,那是不可能的; 它无法连接。 谷歌搜索了一段时间后发现我必须使用IP地址而不是'localhost'。所以我尝试过10.0.0.4:8080/myproject/home.html,但仍然无法正常工作。事实上,我无法在同一台机器上打开该网址(localhost:8080/myproject/home.html工作正常)。我还在控制面板防火墙设置中添加了一个新的入站规则,允许访问协议TCP的所有端口。使用url运行应用程序时仍然存在问题10.0.0.4:8080/myproject/home.html(在同一台机器以及笔记本电脑和移动设备上)。 仅供参考我使用Eclipse Indigo,Apache tomcat 6.0和server.xml文件内容如下: <?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, …