我正在使用这个URI 语言标识符
http://localhost/internationalisation/index.php/en/
http://localhost/internationalisation/index.php/en/welcome/
http://localhost/internationalisation/index.php/en/contact/
http://localhost/internationalisation/index.php/es/
http://localhost/internationalisation/index.php/es/welcome/
我已经设置$config['lang_ignore'] = FALSE;
,所以 URL 显示了我当前使用的语言,就像上面一样。
问题:如何让用户在语言之间切换?
View 中的这些代码不起作用:
<a href="<?php echo site_url('en'); ?>">English</a>
<a href="<?php echo site_url('es'); ?>">Spanish</a>
因为他们产生这样的链接:
http://localhost/internationalisation/index.php/en/en
http://localhost/internationalisation/index.php/en/es
谢谢