thinkphp url build 生成localhost.localhost的解决方案
Posted fyydcxy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp url build 生成localhost.localhost的解决方案相关的知识,希望对你有一定的参考价值。
找到框架核心Url.php的下面一段代码
// 原代码
// URL组装
$url = $domain . rtrim($this->root ?: $this->app[‘request‘]->root(), ‘/‘) . ‘/‘ . ltrim($url, ‘/‘);
// 修改后的代码
// URL组装
$url = rtrim($this->root ?: $this->app[‘request‘]->root(), ‘/‘) . ‘/‘ . ltrim($url, ‘/‘);
以上是关于thinkphp url build 生成localhost.localhost的解决方案的主要内容,如果未能解决你的问题,请参考以下文章