I have created a multilingual website with CodeIgniter and now I would like to change the default url www.myebsite.com into www.mywebsite.com/en/home.
How can I change it?
I have created a multilingual website with CodeIgniter and now I would like to change the default url www.myebsite.com into www.mywebsite.com/en/home.
How can I change it?
Navigate to application/config/routes.php
Find $route['default_controller']
And Replace to:
$route['default_controller'] = 'my-controller/my-method';
You can use the default controller to redirect to /en/home :
class Welcome extends CI_Controller {
public function index()
{
redirect('en/home');
}
}
$route['default_controller'] = 'my-controller/my-method';