Wampserver装好了,但是在www文件夹下面并不能打开
上网查了一下,发现我index.php中少了一段话
这是别人的
这是我的
先试着把缺失的补进去
补进去之后就一切正常了
下面是补完的代码
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>‘;
}
}
原文:https://www.cnblogs.com/Arctic-Maple/p/14723939.html