mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix base path with query params in builtin server
This commit is contained in:
parent
7ba160bf95
commit
6a3c4887f9
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ if (!defined('WWW_ROOT')) {
|
||||||
|
|
||||||
// For the built-in server
|
// For the built-in server
|
||||||
if (PHP_SAPI === 'cli-server') {
|
if (PHP_SAPI === 'cli-server') {
|
||||||
if ($_SERVER['REQUEST_URI'] !== '/' && file_exists(WWW_ROOT . $_SERVER['PHP_SELF'])) {
|
if ($_SERVER['PHP_SELF'] !== '/' . basename(__FILE__) && file_exists(WWW_ROOT . $_SERVER['PHP_SELF'])) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$_SERVER['PHP_SELF'] = '/' . basename(__FILE__);
|
$_SERVER['PHP_SELF'] = '/' . basename(__FILE__);
|
||||||
|
|
Loading…
Reference in a new issue