Language with the segment setting
We're building a site using the language/localization with the segment setting. All is well with regular CMS pages but if it's a URI for a controller page all we ever get back is the index method of that controller when a language is specified. For example domain.com/account/login works fine and give me back the login page but domain.com/es/account/login gives me back the account's index method. Do we have to use remaps on our controllers or is this something that the router should handle?
Comments
$route['es/account/(:any)'] = 'account/$1';