是否可以使用定义的路线和自动布线?定义的路由必须具有比自动路由更高的优先级。
我尝试使用,但在我设置自动开启后,定义的路线根本不起作用。 index.php保持不变:
<?php
include './protected/config/common.conf.php';
include './protected/config/routes.conf.php';
include './protected/config/db.conf.php';
Doo::app()->route = $route;
?>
但是工作只能自动进行。
答案 0 :(得分:0)
在common.conf.php $ config ['AUTOROUTE']中设置为true。
但不要忘记,首先是autoroute,所以如果你有控制器hello并且在autoroute中定义/ hello /:var - 它将调用HelloController()。