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

前端 未结 3 665
滥情空心
滥情空心 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:36

    What you want can be done, with a few side effects however. If you put this in your config/main.php:

            'urlManager'=>array(
            'urlFormat'=>'path',
            'showScriptName'=>false,
            'rules'=>array(
                'image//' => 'image/action/username',
                '' => 'user/post/username',
                ),
            ),
    

    Put all your more specific rules first, then everything else that is a single unit will go to /user/post/something.

提交回复
热议问题