array( 'services' => array( //'Auth' => new Sookon\Authentication\AuthenticationService(), ), ), 'controllers' => array( 'invokables' => array( 'Article\Controller\Index' => 'Article\Controller\IndexController', 'Article\Controller\Article' => 'Article\Controller\ArticleController', 'Article\Controller\Category' => 'Article\Controller\CategoryController', ), ), 'router' => array( 'routes' => array( //通配路由 'article' => array( 'type' => 'Segment', 'options' => array( 'route' => '/article[/:controller[/:action[/page/:page][/id/:id]]]', 'constraints' => array( 'controller' => '[a-zA-Z][a-zA-Z0-9_-]*', 'action' => '[a-zA-Z][a-zA-Z0-9_-]*', 'page' => '[a-zA-Z][a-zA-Z0-9_-]*', 'id' => '[a-zA-Z][a-zA-Z0-9_-]*', ), 'defaults' => array( 'module' => 'Article', '__NAMESPACE__' => 'Article\Controller', 'controller' => 'Article\Controller\Index', 'action' => 'index', ), ), 'may_terminate' => true, 'child_routes' => array( 'wildcard' => array( 'type' => 'Wildcard' ) ) ), //新闻栏目 'news' => array( 'type' => 'Segment', 'options' => array( 'route' => '/news[/:category[/page/:page][[/:article].html]]', 'constraints' => array( 'category' => '[a-zA-Z][a-zA-Z0-9_-]*', 'page' => '[a-zA-Z][a-zA-Z0-9_-]*', 'article' => '.*', ), 'defaults' => array( 'module' => 'Article', '__NAMESPACE__' => 'Article\Controller', 'controller' => 'Article\Controller\Category', 'action' => 'list', ), ), 'may_terminate' => true, 'child_routes' => array( 'wildcard' => array( 'type' => 'Wildcard' ) ) ), ),//routers ), 'view_manager' => array( 'template_path_stack' => array( 'article' => __DIR__ . '/../view', ), 'template_map' => array( 'layout/article/pagination' => __DIR__ . '/../view/layout/pagination-news.phtml', 'layout/article/news/page' => __DIR__ . '/../view/article/article/view.phtml', 'layout/article/news/index' => __DIR__ . '/../view/article/article/index.phtml', ), ), );