0

有没有办法在加载时更改 url 请求中的参数?

我的路线基本上检查网址中的语言http://localhost/<language>/<controller>

但是问题是,如果在语言参数中插入随机文本,它会加载默认文本,我设置翻译文件的方式将输出如下内容menu.home

无论如何,控制器是否可以使用默认语言重定向到 url?例如http://localhost/fakeLanguage/home将重定向到http://localhost/en/homehttp://localhost/fakeLanguage/about重定向到http://localhost/en/about

4

2 回答 2

1

您的 Route 必须使用正则表达式过滤段,如下所示:

// load available language names from config
$langs = Kohana::$config->load('lang.available');
Route::set('lang_route', '<language>/<controller>', array('language' => '('.implode('|', $langs).')'))
    ->defaults(...);

或者使用路由过滤器,可以轻松修改路由段值。

于 2012-11-09T08:24:26.440 回答
0

虽然这只是一种可能的解决方案的粗略想法,但您可能需要考虑定义所有受支持语言的数组。像这样的东西:

<?php
/*
    Part 1 - Create an array of all the known languages. Consider making this part of the application configuration file.
*/
$languages = array(
    "en",
    "ge",
    "pirate"
);
?>

然后检查控制器文件中的那个数组。也许使用控制器的 before 方法:

<?php
/*
    Part 2 - In the controller file add a before method that checks to see if the requested language exists.
*/
public function before(){
    if(!in_array($this->request->param('langauge'),$languages)):
        // If the language is unknown perform a redirect.
        url::redirect('DEFAULT_LANGUAGE_URL');
    endif;
}
?>

转换上面 URL 结构的第一段可以使用如下代码完成:

<?php
    // Get the current URI
    $url = $this->request->detect_uri();

    // Get the query string
    // Note: If you aren't interested in preserving the query string this next line can be removed.
    if($_SERVER['QUERY_STRING'] != '') $url .= '?'.$_SERVER['QUERY_STRING'];

    // Set the default language. Consider setting this in your application configuration file instead.
    $defaultLanguage = 'pirate';

    // Replace the first URI segment with the default language.
    $redirectURL = preg_replace("/^\/.*?(\/.*)$/",("/{$defaultLanguage}$1"),$url,1);
?>
于 2012-11-05T03:53:49.757 回答