mirror of
https://github.com/YGGverse/next.git
synced 2025-01-25 22:34:21 +00:00
set empty request value to / by protocol specification
This commit is contained in:
parent
69c47f0655
commit
6eec298bfe
@ -187,6 +187,8 @@ $server->start(
|
||||
$request
|
||||
);
|
||||
|
||||
$request = empty($request) ? '/' : $request;
|
||||
|
||||
// Build realpath
|
||||
$realpath = realpath(
|
||||
NEXT_PATH .
|
||||
@ -338,7 +340,7 @@ $server->start(
|
||||
(string) (int) is_string($response),
|
||||
(string) parse_url($url, PHP_URL_HOST),
|
||||
(string) parse_url($url, PHP_URL_PORT),
|
||||
(string) str_replace('%', '%%', empty($request) ? '/' : $request),
|
||||
(string) str_replace('%', '%%', $request),
|
||||
(string) str_replace('%', '%%', empty($realpath) ? '!' : $realpath),
|
||||
(string) mb_strlen((string) $response)
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user