mov: renamed 'view.index' to 'view.home' | upd: config.routes/router.controller.redirect (redirect is now 'home' not 'homepage')

This commit is contained in:
xdrm-brackets 2017-11-28 16:48:59 +01:00
parent 6da4f911ae
commit 8d5806710b
3 changed files with 3 additions and 3 deletions

View File

@ -18,8 +18,8 @@
/* CALL
*
*/
public function homepage(){
header('Location: /homepage/');
public function home(){
header('Location: /home/');
}
/* POST-CALL

View File

@ -25,7 +25,7 @@
"/{any}": {
"methods": ["GET"],
"controller": "redirect:homepage",
"controller": "redirect:home",
"arguments": {
"any": ".*"
}