wampserver localhost 无法进入自己项目 projectContents www 下index.php 文件

while (($file = readdir($handle))!==false) 
{
if (is_dir($file) && !in_array($file,$projectsListIgnore)) 
{
//[modif oto] Ajout éventuel de http:// pour éviter le niveau localhost dans les url
$projectContents .= '<li><a href="'.($suppress_localhost ? ' http://localhost/' : '').$file.'">'.$file.'</a></li>';
}
}

猜你喜欢

转载自blog.csdn.net/liu709127859/article/details/80226802