mirror of
https://github.com/YGGverse/next.git
synced 2026-03-31 17:55:34 +00:00
set empty request value to / by protocol specification
This commit is contained in:
parent
69c47f0655
commit
6eec298bfe
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue