您的位置首页生活小窍门

phpstudy打开localhost总是自动跳转到localhost/index.html是怎么回事

是 phpstudy 搭建的服务器站点根目录下,缺少名为 index.html 的文件。服务器都会设置一个默认的访问主页文件,如图

phpstudy打开localhost总是自动跳转到localhost/index.html是怎么回事

调整前后顺序,将 index.php 放前面。默认打开文档是根据上面的文件名顺序来完成搜索的,先搜索庆启仿第1个旁陪,如果没找到,再搜索后面的。如果 index.php 放前面,先打开的就是 index.php。

wampserver打开localhost显示域名重定向怎么办?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 .= '<li><a rel="nofollow" href="'.($suppress_localhost ? 'http://' : '').$file.'">'.$file.'</a></li>';

}

}

修改后代码:

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 .= '<li><a rel="nofollow" href="'.($suppress_localhost ? 'http://localhost/' : '').$file.'">'.$file.'</a></li>';

}

}