<?php /* * @Author: huangyuan * @Date: 2017-03-01 14:39:37 * @Last Modified by: huangyuan413026@163.com * @Last Modified time: 2017-03-01 14:39:37 * @Description: 路由配置,在URL中隱藏模塊名 */ return [ //默認首頁 ''=>'index/index', //未隱藏模塊名 http://tp5.com/index/5 // 'index:name'=>['index/hello',['name'=>'\w+']], //隱藏模塊名 http://tp5.com/5 ':name'=>['index/hello',['name'=>'\w+']], // 路由分組 '[]'=>[ ':id'=>['index/who',['id'=>'\d+']] // ':name'=>['index/hello',['name'=>'\w+']], ] ];
<?php /* * @Author: huangyuan * @Date: 2017-03-01 14:39:11 * @Last Modified by: huangyuan413026@163.com * @Last Modified time: 2017-03-01 14:39:34 */ namespace app\index\controller; class Index { public function index() { echo '<br>This is the index method'; } public function who($id){ echo $id; echo '<br>This is the who method'; } public function hello($name){ echo $name; echo '<br>This is the hello method'; } }