关于php无法用localhost访问的原因.

2024-11-22 21:24:42
推荐回答(5个)
回答1:

兄弟 ,给你apache配置一个域名,把根目录指到你项目目录就ok啦!就可以达到你想要的效果了

我是这样配的

ServerAdmin admin@local.com
DocumentRoot "G:/htdocs/test/"
ServerName local.test.com
ErrorLog "logs/test/dummy-test-error.log"
CustomLog "logs/test/dummy-test-access.log" common

回答2:

其它的项目,你如果放在了根目录下面的话,比如说wine这个项目,那么访问他的话,就是localhost/wine/index.php

回答3:

把localhost改了,看看你的host里面的本机127.0.0.1有没改,如果不是localhost 就改成localhost,这样就可以了

回答4:

你为你的localhost绑定到你的虚拟路径上了。

回答5:

可以设置不同的端口显示不同的访问路径:
参考Apache官网:http://httpd.apache.org/docs/2.2/