该项目是几年前开发的,现在我们需要为所有网址添加自定义uri段。例如现在我们有
www.address.com/blog/how-does-it-sound
我们需要将其更改为
www.address.com/ru/blog/how-does-it-sound
但是只有在选择俄语时才能使用uri段/ru/
。所以问题是 - 如何做到像全球这样的事情?
if ( $this->session->userdata('user_lang') && $this->session->userdata('user_lang') == 'ru' ){
$this->uri->segment(1) = $this->uri->segment(2);
}
我希望你能理解我需要的东西。 我找到了一个核心课程,但我不确定如何正确编辑它。