我想在 CodeIgniter 中向我的 URI 添加一个语言代码段,但我想以某种方式(可能通过路由)强制浏览器停止将语言代码解释为路径。
我还没有在我的 CodeIgniter 安装中成功实现任何 i18n 库,而且我相当确定我的问题很简单,无论如何都可以在没有库的情况下解决。
我想到的方法是简单地加载与 URI 中出现的语言代码相对应的语言文件。
例如
http://example.com/about // Default language
http://example.com/sv/about // Load Swedish language
这是控制器逻辑:
<?php
// ** Update **
// The following updated code works, as long as the language code appears
// at the end of the URI, e.g, http://example.com/about/sv
//
// Ideally, I would like the language code segment to always appear first.
//
// There is also the problem of keeping the language selected while
// navigating around the site…
class Pages extends CI_Controller {
public function view ($page = 'home') {
if (!file_exists('application/views/pages/'.$page.'.php'))
show_404();
$uri = explode("/", $_SERVER['REQUEST_URI']);
$lang_code = end($uri);
$data['title'] = $lang_code;
switch ($lang_code) {
case "sv": $the_language = "swedish"; break;
case "no": $the_language = "norwegian"; break;
default: $the_language = "english";
}
$this->lang->load('general',$the_language);
$this->load->view('templates/header', $data);
$this->load->view('pages/'.$page, $data);
$this->load->view('templates/footer', $data);
}
}
?>
我会以错误的方式解决这个问题吗?如果是这样,为什么?请避免预设回复。