From b5ca634bdd7c7dfd2d6ce79c9c9d918770d3da5f Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 13 Aug 2022 16:14:12 +0100 Subject: [PATCH] Redirect micropub create page to notes new page --- routes/web.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routes/web.php b/routes/web.php index 6d822b3b..574bba01 100644 --- a/routes/web.php +++ b/routes/web.php @@ -183,6 +183,9 @@ Route::group(['domain' => config('url.longurl')], function () { // Places Route::get('places', [PlacesController::class, 'index']); Route::get('places/{place}', [PlacesController::class, 'show']); + + // Micropub + Route::redirect('/micropub/create', '/notes/new'); }); // Short URL