在我的控制器的 beforeFilter 中,我检查这种类型的请求并重定向:
if ( array_key_exists('myparameter',$this->request->query) ) {
$this->redirect("http://example.com/".$this->request->url,301);
}
但似乎从routes.php进行这种重定向更像蛋糕。
那么我怎样才能把这个逻辑放在Router::connect中呢?
在我的控制器的 beforeFilter 中,我检查这种类型的请求并重定向:
if ( array_key_exists('myparameter',$this->request->query) ) {
$this->redirect("http://example.com/".$this->request->url,301);
}
但似乎从routes.php进行这种重定向更像蛋糕。
那么我怎样才能把这个逻辑放在Router::connect中呢?