CodeIgniter:如何设置默认页面

use*_*288 1 php codeigniter

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

我该怎么改变它?

Ila*_*nus 12

导航 application/config/routes.php

$route['default_controller']

并替换为:

$route['default_controller'] = 'my-controller/my-method';
Run Code Online (Sandbox Code Playgroud)