wampserver的localhost下点击项目,url不对

Posted camelroyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wampserver的localhost下点击项目,url不对相关的知识,希望对你有一定的参考价值。

wampserver的localhost下点击项目,url不对

找到wamp 的www 目录下的index.php 文件打开后 找到399行这里

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

    }

}

修改一行:

以上是关于wampserver的localhost下点击项目,url不对的主要内容,如果未能解决你的问题,请参考以下文章