How to remove index.php in Yii Framework

后端 未结 9 1714
一个人的身影
一个人的身影 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:26

    I just came across this thread but found that in order to get it working I not only had to follow the instrucitons for adding the .htaccess file but also had to uncomment the section below from my main config file (\protected\config\main.php):

            // uncomment the following to enable URLs in path-format
    
        'urlManager'=>array(
            'urlFormat'=>'path',
            'rules'=>array(
                '/'=>'/view',
                '//'=>'/',
                '/'=>'/',
            ),
        ),
    

提交回复
热议问题