From a2dc154803c54119315db1240bb84851d8025e92 Mon Sep 17 00:00:00 2001 From: Eric Date: Mon, 29 Aug 2022 18:23:32 -0500 Subject: [PATCH] update /get-started redirect (#7445) --- website/config/routes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/config/routes.js b/website/config/routes.js index cc3b52be4a..adea012a60 100644 --- a/website/config/routes.js +++ b/website/config/routes.js @@ -264,7 +264,7 @@ module.exports.routes = { // puts this kind of thing under /docs, NOT /documentation. These "convenience" redirects are to help them out. 'GET /documentation': '/docs', 'GET /contribute': '/docs/contributing', - 'GET /install': '/get-started', + 'GET /install': '/fleetctl-preview', 'GET /company': '/company/about', 'GET /company/about': '/handbook', // FUTURE: brief "about" page explaining the origins of the company 'GET /support': '/company/contact', @@ -277,7 +277,7 @@ module.exports.routes = { 'GET /docs/using-fleet/updating-fleet': '/docs/deploying/upgrading-fleet', 'GET /blog': '/articles', 'GET /brand': '/logos', - 'GET /get-started': '/fleetctl-preview', + 'GET /get-started': '/try-fleet/register', 'GET /g': (req,res)=> { let originalQueryStringWithAmp = req.url.match(/\?(.+)$/) ? '&'+req.url.match(/\?(.+)$/)[1] : ''; return res.redirect(301, sails.config.custom.baseUrl+'/?meet-fleet'+originalQueryStringWithAmp); }, 'GET /test-fleet-sandbox': '/try-fleet/register',