How to remove index.php in Yii Framework

后端 未结 9 1754
一个人的身影
一个人的身影 2020-12-08 22:56

\"enterHey guyz i am a newbie in Yii framework. I want to remove the index.php from my urls. F

9条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-08 23:23

    If you also want to remove /index from the main page URL, add ''=>'site/index' to the top of your urlManager rules, like so:

    'urlManager'=>array(
        'urlFormat'=>'path',
        'showScriptName' => false,
        'rules'=>array(
            ''=>'site/index',
            ''=>'site/',
    

提交回复
热议问题