Browse Source

improve request uri detection.

Taylor Otwell 13 years ago
parent
commit
f6ea58ed96
1 changed files with 4 additions and 2 deletions
  1. 4 2
      laravel/request.php

+ 4 - 2
laravel/request.php

@@ -66,9 +66,11 @@ class Request {
 			$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