Browse Source

Improve request URI determination.

Taylor Otwell 14 years ago
parent
commit
0db0dadef7
1 changed files with 6 additions and 1 deletions
  1. 6 1
      system/request.php

+ 6 - 1
system/request.php

@@ -36,7 +36,12 @@ class Request {
 		// -------------------------------------------------------
 		elseif (isset($_SERVER['REQUEST_URI']))
 		{
-			$uri = str_replace('/index.php', '', $_SERVER['REQUEST_URI']);
+			$uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
+
+			if ($uri === false)
+			{
+				throw new \Exception("Malformed request URI. Request terminated.");
+			}
 		}
 		// -------------------------------------------------------
 		// Neither PATH_INFO or REQUEST_URI are available.