隔壁司机老王

微博:i王YOU

导航

wampserver 2.5 首页链接问题,wampserver Your Projects

在wampserver 2.5之后,在首页的Your projects里面,链接的地址为http://直接加你的系统名称,会导致无法访问,

正常的应该为http://localhost+你的系统名称,这时需要修改www文件夹下的index.php文件,在此文件夹内搜索projectContents,然后将http://改成http://localhost/即可。

 


 

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


 

posted on 2015-12-15 20:36  隔壁司机老王  阅读(401)  评论(0编辑  收藏  举报