我必须在kohana写下以下的路线
$this->request->redirect("/" . input::post('custom_url'));
示例,如果custom_url = testpage 然后它应该是' abc.com/testpage'它应该被重定向到控制器功能示例contoller / profile。
示例,如果custom_url = testpage1 那应该是' abc.com/testpage1'
Route::set('event', '(event(/<url>))')
->defaults(array(
'controller' => 'event',
'action' => 'profile',
));
我的网址是domainname / event / customname,它应该重定向到event / profile。其中event是控制器,profile是action