I am using Kohana Framework 3.2
Usually in my bootstrap file, I can setup a Route::set like this:
Route::set('faq', 'faq')->defaults(array('controller' => 'home', 'action' => 'faq'));
This does so example.com/faq points to my controller home, action faq.
I would like to know if I can setup a redirection this way also?
So I can say that example.com/faq should redirect to example.com/thegreatfaqs?
Or must use route::set like the above, to a controller that then request redirects to /thegreatfaqs ?