I want to direct /abc to Phalcon Micro instead of the full Phalcon. I start with the following code. The problem is the $app->map("/abc", in the micro code.
$uri_parts = explode('/', $_SERVER['REQUEST_URI']); if (count($uri_parts) > 1 and $uri_parts[0] == '' and $uri_parts[1] == 'css') { require APP_PATH . 'app/index-micro.php'; }
I need a map route string to include /abc, /abc/, /abc/something.html, and exclude /abcx. There are some posts for handling /abc/{params}. As a way to get things started, I created several maps pointing to the same code. I could not make map handle /abc/.