CodeIgniter:如何设置默认页面

时间:2015-08-06 09:21:06

标签: php codeigniter

我已经使用CodeIgniter创建了一个多语言网站,现在我想将默认网址 www.myebsite.com 更改为 www.mywebsite.com/en/home

我该如何更改?

3 个答案:

答案 0 :(得分:7)

导航至application/config/routes.php

查找$route['default_controller']

并替换为:

$route['default_controller'] = 'my-controller/my-method';

答案 1 :(得分:4)

您可以使用默认控制器重定向到/ en / home:

class Welcome extends CI_Controller {

    public function index()
    {
        redirect('en/home');
    }
}

答案 2 :(得分:0)

$route['default_controller'] = 'my-controller/my-method';