在Kohana 3.3中将具有大写字符的任何路由转发到等效的小写路由

时间:2013-07-24 22:02:39

标签: kohana kohana-3

为了澄清,我这样做是出于搜索引擎优化的原因(避免重复内容)。我不希望site.com/myPage显示site.com/mypage,我希望它转发给后者。

我创建了一个小模块,将任何带有大写字符的路由转发到等效的小写路由。虽然我的解决方案有效,但我对Kohana仍然相对较新,如果有更好的方法,我很好奇。 我的路线看起来像这样(arbirtrary到8,假设我的网址都不会比这长):

Route::set(
    'upper-case-redirect',
    '(<id1>(/<id2>(/<id3>(/<id4>(/<id5>(/<id6>(/<id7>(/<id8>))))))))'
)
->filter(function($route, $params, $request){

        $matched = false;
        $fixed_url = array();
        foreach($params as $index=>$param){
            if(strtolower($index) == 'controller' || strtolower($param) == 'action'){
                continue;
            }
            if($param!==strtolower($param)){
                $matched = true;
                $fixed_url[]= strtolower($param);
            }
        }
        if($matched){
            $params['controller'] =  'RouteCaseFix';
            $params['action'] = 'redirect';
            $params['id1'] = implode("/",$fixed_url);
            return $params;
        }else{
            return false;
        }
})
->defaults(
    array(
        'controller' => 'RouteCaseFix',
        'action' => 'redirect',
    )
);

我的控制器看起来像这样     class Controller_RouteCaseFix扩展Controller {

    public function action_redirect(){
        $arguments = $this->request->query();
        $url_argument_string = '';
        if(is_array($arguments)){
            $url_argument_string = '?';
            foreach($arguments as $index=>$value){
                $url_argument_string.=$index.'='.$value.'&';                
            }           
        }
        $this->redirect($this->request->param('id1').substr($url_argument_string,0,-1),301);
    }

}

1 个答案:

答案 0 :(得分:0)

如果您不希望任何路由区分大小写,只需扩展路由类:

class Route extends Kohana_Route {

    public static function compile($uri, array $regex = NULL)
    {
        return parent::compile($uri, $regex).'i';
    }
}