0

澄清一下,我这样做是出于 SEO 的原因(避免重复的内容)。我不希望 site.com/myPage 显示 site.com/mypage,我希望它转发给后者。

我创建了一个小模块,用于将任何带有大写字符的路由转发到等效的小写路由。虽然我的解决方案有效,但我对 Kohana 还是比较陌生,并且好奇是否有更好的方法。我的路线看起来像这样(任意转到 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',
    )
);

我的控制器看起来像这个类 Controller_RouteCaseFix 扩展控制器 {

    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);
    }

}
4

1 回答 1

0

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

class Route extends Kohana_Route {

    public static function compile($uri, array $regex = NULL)
    {
        return parent::compile($uri, $regex).'i';
    }
}
于 2013-07-25T07:58:17.303 回答