Commit a26efbc2 authored by Taylor Otwell's avatar Taylor Otwell

Even more refactoring on the request class.

parent 88ebf612
......@@ -29,11 +29,15 @@ class Request {
$uri = static::raw_uri();
$base = parse_url(Config::get('application.url'), PHP_URL_PATH);
if (strpos($uri, $base) === 0) $uri = substr($uri, strlen($base));
if (strpos($uri, $base = parse_url(Config::get('application.url'), PHP_URL_PATH)) === 0)
{
$uri = substr($uri, strlen($base));
}
if (strpos($uri, $index = '/index.php') === 0) $uri = substr($uri, strlen($index));
if (strpos($uri, $index = '/index.php') === 0)
{
$uri = substr($uri, strlen($index));
}
return static::$uri = (($uri = trim($uri, '/')) == '') ? '/' : $uri;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment