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>';
}
}
修改一行: