improve request uri detection.
This commit is contained in:
parent
02305fafc2
commit
f6ea58ed96
|
@ -66,9 +66,11 @@ public static function uri()
|
||||||
$uri = substr($uri, strlen($base));
|
$uri = substr($uri, strlen($base));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strpos($uri, '/index.php') === 0)
|
$index = '/'.Config::$items['application']['index'];
|
||||||
|
|
||||||
|
if (trim($index) !== '' and strpos($uri, $index) === 0)
|
||||||
{
|
{
|
||||||
$uri = substr($uri, 10);
|
$uri = substr($uri, strlen($index));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Request URIs to the root of the application will be returned
|
// Request URIs to the root of the application will be returned
|
||||||
|
|
Loading…
Reference in New Issue