'别名' => '控制器/动作'
'document' => 'document/show'
http://www.timophp/document/108 => http://www.timophp.com/document/show/108
其实就是给‘document/show’取了一个别名叫document,当然,你也可以叫其它的名字,如doc等等。
可以在common.config.php 和 项目配置文件里面配置,当然,也可以单独用一个配置文件,如:/config/router.config.php来配置。
例如:
'router' => array(
'space' => 'space/index',
'archive/read' => 'article/index',
'search' => 'index/search'
)