mov: renamed 'view.index' to 'view.home' | upd: config.routes/router.controller.redirect (redirect is now 'home' not 'homepage')
This commit is contained in:
parent
6da4f911ae
commit
8d5806710b
|
@ -18,8 +18,8 @@
|
|||
/* CALL
|
||||
*
|
||||
*/
|
||||
public function homepage(){
|
||||
header('Location: /homepage/');
|
||||
public function home(){
|
||||
header('Location: /home/');
|
||||
}
|
||||
|
||||
/* POST-CALL
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
"/{any}": {
|
||||
"methods": ["GET"],
|
||||
"controller": "redirect:homepage",
|
||||
"controller": "redirect:home",
|
||||
"arguments": {
|
||||
"any": ".*"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue