diff --git a/src/App.php b/src/App.php index 0d4e8880d..d4120bcc2 100644 --- a/src/App.php +++ b/src/App.php @@ -717,6 +717,10 @@ class App $this->baseURL->redirect('search'); } + if (in_array($moduleName, ['about', 'about/more'])) { + $this->baseURL->redirect('friendica'); + } + // Initialize module that can set the current theme in the init() method, either directly or via App->setProfileOwner $page['page_title'] = $moduleName; diff --git a/static/routes.config.php b/static/routes.config.php index e3c87f150..f33cd9581 100644 --- a/static/routes.config.php +++ b/static/routes.config.php @@ -318,8 +318,6 @@ return [ '/proofs' => [Module\Api\Mastodon\Proofs::class, [R::GET ]], // Dummy, not supported ], - '/about[/more]' => [Module\Friendica::class, [R::GET]], - '/admin' => [ '[/]' => [Module\Admin\Summary::class, [R::GET]],