路由解释
正常条件下
路径:/控制器/Action
例:
http://localhost/index/index
http://localhost/index.php/index/index
路由配置
<?phpreturn [['GET','index.test','index/index'], // http://localhost/index.test get方法请求['POST','index.oklala','index/index2'], // http://localhost/index.oklala post方法请求];
