kohana动态uri路由重定向到控制器功能

时间:2014-03-14 04:53:04

标签: kohana custom-routes

我必须在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

0 个答案:

没有答案