cakephp 框架设置默认启动路径

cakephp 框架设置默认启动路径 只需要在/config/route.php 中设置Router::connect('/', array('controller' => 'login', 'action' => 'index'));


如果你想默认是 /categrade/list

可以Router::connect('/', array('controller' => 'categrade', 'action' => 'list'));


你可能感兴趣的:(cakephp)