使用wamp访问localhost时查看项目地址不对
Posted God is Love
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用wamp访问localhost时查看项目地址不对相关的知识,希望对你有一定的参考价值。
使用wamp访问localhost时查看项目地址不对
直接点击访问不到,http://路径少了一个localhost。
怎么办呢?
找到wamp 的www 目录下的index.php 文件打开后 找到399行这里
$handle=opendir(".");
$projectContents = \'\';
while (($file = readdir($handle))!==false)
{
if (is_dir($file) && !in_array($file,$projectsListIgnore))
{
$projectContents .= \'<li><a href="\';
if($suppress_localhost)
$projectContents .= \'http://\'.$file.$UrlPort.\'/"\';
else
$projectContents .= \'http://localhost\'.$UrlPort.\'/\'.$file.\'/"\';
$projectContents .= \'>\'.$file.\'</a></li>\';
}
}
修改一行:
以上是关于使用wamp访问localhost时查看项目地址不对的主要内容,如果未能解决你的问题,请参考以下文章
tomcat发布项目时,localhost可以访问,用ip地址不能访问,同时其他电脑也不能访问。
如何使用 wamp 从不同的网络计算机访问 localhost?
php安全问题,wamp后,只能通过localhost访问,如何通过IP地址远程访问