关于浏览器localhost点击wamp项目跳转出错

www目录下index.php399行代码

$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>';

    }

}

加粗字体改成:$projectContents .= 'http://localhost/'.$file.$UrlPort.'/"';

原文地址:https://www.cnblogs.com/wxyz9527/p/9944965.html