wampserver打开localhost显示域名重定向怎么办?localhost显示域名重定向解决办法

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


wampserver 2.5 首页链接问题

在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 .= '

  • '.$file.'
  • ';
    }
    }


    修改后代码:

    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 .= '

  • localhost/' : '').$file.'">'.$file.'
  • ';
    }
    }

    你可能感兴趣的:(wampserver打开localhost显示域名重定向怎么办?localhost显示域名重定向解决办法)