使用wamp訪問localhost時查看項目地址不對
阿新 • • 發佈:2017-05-08
amp host cts 一個 com span 路徑 als str
使用wamp訪問localhost時查看項目地址不對
直接點擊訪問不到,http://路徑少了一個localhost。
怎麽辦呢?
找到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>‘;
}
}
修改一行:
使用wamp訪問localhost時查看項目地址不對