phpstudy打开localhost自动跳转localhost/index.html怎么回事?
是 phpstudy 搭建的服务器站点根目录下,缺少名为 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 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 href="'.($suppress_localhost ? 'http://localhost/' : '').$file.'">'.$file.'</a></li>';
}
}