我是 yii 框架的新手。我已经使用 gii 工具构建了类别模块,我必须输入以下 URL
http://localhost:8080/myadminpanel/index.php/category/category/create
在这里,一类是模块 ID,另一类是控制器 ID。我怎样才能制作以下网址
http://localhost:8080/myadminpanel/index.php/category/create
我是 yii 框架的新手。我已经使用 gii 工具构建了类别模块,我必须输入以下 URL
http://localhost:8080/myadminpanel/index.php/category/category/create
在这里,一类是模块 ID,另一类是控制器 ID。我怎样才能制作以下网址
http://localhost:8080/myadminpanel/index.php/category/create
我假设您知道在哪里定义路线:
'rules' => array(
'category/create' => '/category/category/create' // For the "create" action
'category/<action:w\+>' => '/category/category/<action>' // For all category routes
)