Clean up request::uri method.

This commit is contained in:
Taylor Otwell
2011-06-16 06:17:29 -07:00
parent dae7912c40
commit 9b9a880326

View File

@@ -43,11 +43,8 @@ class Request {
throw new \Exception("Malformed request URI. Request terminated."); throw new \Exception("Malformed request URI. Request terminated.");
} }
if (strpos($uri, '/index.php') === 0)
{
$uri = str_replace('/index.php', '', $uri); $uri = str_replace('/index.php', '', $uri);
} }
}
// ------------------------------------------------------- // -------------------------------------------------------
// Neither PATH_INFO or REQUEST_URI are available. // Neither PATH_INFO or REQUEST_URI are available.
// ------------------------------------------------------- // -------------------------------------------------------