Renamed IndexController to HomeController to avoid errors with Apache Multiviews. Related to issue #74

This commit is contained in:
Roy Lindauer 2013-09-19 23:33:46 -07:00
commit 2a5262f5ed
3 changed files with 3 additions and 3 deletions

View file

@ -38,7 +38,7 @@ require_once(APPLICATION_PATH . 'vendor/autoload.php');
// Load configuration if present:
$conf = array();
$conf['b8']['app']['namespace'] = 'PHPCI';
$conf['b8']['app']['default_controller'] = 'Index';
$conf['b8']['app']['default_controller'] = 'Home';
$conf['b8']['view']['path'] = dirname(__FILE__) . '/PHPCI/View/';
$config = new b8\Config($conf);