服务器无法访问_localhost重定向次数过多

服务器无法访问_localhost重定向次数过多wampserver2.5首页链接问题在wampserver2.5之后,在首页的Yourprojects里面,链接的地址为http://直接加你的系统名称,会导致无法访问,正常的应该为http://localhost

服务器无法访问_localhost重定向次数过多

wampserver 2.5 首页链接问题在wampserver 2.5之后,在首页的Your projects里面,链接的地址为http://直接加你的系统名称,会导致无法访问,正常的应该为http://localhost


wampserver 2.5 首页链接问题

在wampserver 2.5之后,在首页的Your projects里面,链接的地址为http://直接加你的系统名称,会导致无法访问,正常的应该为http://localhost+你的系统名称,这时需要修改www文件夹下的index.php文件,在此文件夹内搜索projectContents,然后将http://改成   http://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>’;
}
}

今天的文章服务器无法访问_localhost重定向次数过多分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/88999.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注