I am working on a cms project which will be used to publish news sites. I am using i18n plugin for multilingual issues. the problem is at routing. I have module called news
and method page
in it and route is set as
$route['page/test'] = 'news/page/1';
this works without problem when i go to
http://localhost/site/page/test
problems begin when i start using i18n localization plugin. then it only works with this url:
http://localhost/site/en/news/page/test
I want the url to be wiout the news
segment. What can I do to solve this?
Thanks in advance.