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

wampserver的localhost下点击项目,url不对
找到wamp 的www 目录下的index.php 文件打开后 找到这里

$handle=opendir(".");
$projectContents = '';
while (($file = readdir($handle))!==false)
{
    if (is_dir($file) && !in_array($file,$projectsListIgnore))
    {
        $projectContents .= '
  • '; } }

    将这一行:

    $projectContents .= 'http://'.$file.$UrlPort.'/"'; 
    

    修改为:

    $projectContents .= 'http://localhost/'.$file.$UrlPort.'/"';
    

    转载自:https://www.cnblogs.com/camelroyu/p/8021918.html

    你可能感兴趣的:(wampserver的localhost下点击项目,url不对)