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に表示されるように設定しました。
質問:ユーザーが言語を切り替えることができるようにするにはどうすればよいですか?
ビューのこれらのコードは機能しません:
<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
ありがとう