Post your bootstrap. Most common reason for this that I have seen is failure to dispatch the front controller:
Code:
$front->dispatch();
You might want to set the front controller to throw exceptions as well.
Code:
error_reporting(E_ALL|E_STRICT);
ini_set('display_errors',true);
.
.
.
$front->throwExceptions(true);