Hey, I'm new to Phalcon. Here's my embarrassing situation.
class IndexController extends \Phalcon\Mvc\Controller
{
public function indexAction() { echo 'The index page'; }
}
class SignupController extends \Phalcon\Mvc\Controller
{
public function indexAction() { echo 'The signup page'; }
}
Ok, so everytime I go to -> localhost:8000 (The indexAction from the IndexController is called. Great!)
But, when I go to -> localhost:8000/signup (The indexAction from the IndexController is called. wait..WHAT!?)
Why!? Is it just me or am I missing something?