No route matched your request
/vendor/phpixie/core/classes/PHPixie/Router.php
111    			}
112    		}
113    		if ($matched == false)
114    			throw new \PHPixie\Exception\PageNotFound('No route matched your request');
115    			
116    		$route = $this->routes[$matched];
/classes/Front/Pixie.php
38    		$uri = $_SERVER['REQUEST_URI'];
39    		$uri = preg_replace("#^{$this->basepath}(?:index\.php/)?#i", '/', $uri);
40    		$url_parts = parse_url($uri);
41    		$route_data = $this->router->match($url_parts['path'], $_SERVER['REQUEST_METHOD']);
42    		return $this->request($route_data['route'], $_SERVER['REQUEST_METHOD'], $_POST, $_GET, $route_data['params'], $_SERVER, $_COOKIE);
43    	}
/classes/Front/Pixie.php
50    	public function handle_http_request() {
51    		try {
52    
53    			$request =  $this->http_request();
54    
55    			$session = new \PHPixie\Session($this);
/web/index.php
118    
119    $pixie = new \Front\Pixie();
120    $pixie->root = $root;
121    $pixie->bootstrap($root)->handle_http_request();
122    
123