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
|
/* CALL
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function homepage(){
|
public function home(){
|
||||||
header('Location: /homepage/');
|
header('Location: /home/');
|
||||||
}
|
}
|
||||||
|
|
||||||
/* POST-CALL
|
/* POST-CALL
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
"/{any}": {
|
"/{any}": {
|
||||||
"methods": ["GET"],
|
"methods": ["GET"],
|
||||||
"controller": "redirect:homepage",
|
"controller": "redirect:home",
|
||||||
"arguments": {
|
"arguments": {
|
||||||
"any": ".*"
|
"any": ".*"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue