Controlling url in Yii: controller/action/id to /id

前端 未结 3 663
滥情空心
滥情空心 2021-01-22 13:02

Can we display url in the format controller/action/id to /id in Yii? Also, one major problem is that I need to do this only on the specific controller/

3条回答
  •  情歌与酒
    2021-01-22 13:46

    In your config/main.php try

    'urlManager'=>array(
                'urlFormat'=>'path',
                'showScriptName'=>false,
                            'rules'=>array(
                              'user/post/'=>'', //this should be the very first rule
                               //other rules 
                             ),
                ),
            ),
    

提交回复
热议问题