We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5a9bc5 commit eca3fc9Copy full SHA for eca3fc9
web/helpers/url_helper.php
@@ -65,7 +65,7 @@ function url_for($url, $absolute=false)
65
$port_str = $port ? (($port == '80' || $port == '443') ? "" : ":" . $port) : "";
66
67
// !isset的情况下就是在命令行模式下的,这时使用默认的线上host信息
68
- $host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ONLINE_HOSTNAME;
+ $host = isset($_SERVER['HTTP_HOST']) && !$absolute ? $_SERVER['HTTP_HOST'] : ONLINE_HOSTNAME;
69
70
return ($absolute ? "{$protocal}://{$host}{$port_str}" : "" ) . $base_url . $url;
71
}
0 commit comments