1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-29 01:15:48 +02:00

Add redirects from 404 logs (#5356)

Add more redirects from the docs refactor
This commit is contained in:
Drew Gorton 2023-11-17 09:38:33 -06:00 committed by GitHub
parent 9ef78a5a18
commit fd099e242e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -431,6 +431,7 @@ module.exports = {
from: [ from: [
'/user_guide/important-concepts', '/user_guide/important-concepts',
'/tutorials/important-concepts', '/tutorials/important-concepts',
'/reference/concepts/',
], ],
to: '/reference', to: '/reference',
}, },
@ -532,7 +533,10 @@ module.exports = {
to: '/', to: '/',
}, },
{ {
from: '/topics/feature-flags/tutorials', from: [
'/topics/feature-flags/tutorials',
'/tutorials',
],
to: '/feature-flag-tutorials', to: '/feature-flag-tutorials',
}, },
{ {
@ -574,19 +578,31 @@ module.exports = {
to: '/understanding-unleash/unleash-overview', to: '/understanding-unleash/unleash-overview',
}, },
{ {
from: '/tutorials/managing-constraints', from: [
'/tutorials/managing-constraints',
'/topics/managing-constraints',
],
to: '/understanding-unleash/managing-constraints', to: '/understanding-unleash/managing-constraints',
}, },
{ {
from: '/tutorials/the-anatomy-of-unleash', from: [
'/tutorials/the-anatomy-of-unleash',
'/topics/the-anatomy-of-unleash',
],
to: '/understanding-unleash/the-anatomy-of-unleash', to: '/understanding-unleash/the-anatomy-of-unleash',
}, },
{ {
from: '/tutorials/proxy-hosting', from: [
'/tutorials/proxy-hosting',
'/topics/proxy-hosting',
],
to: '/understanding-unleash/proxy-hosting', to: '/understanding-unleash/proxy-hosting',
}, },
{ {
from: '/tutorials/data-collection', from: [
'/tutorials/data-collection',
'/topics/data-collection',
],
to: '/understanding-unleash/data-collection', to: '/understanding-unleash/data-collection',
}, },
@ -606,6 +622,13 @@ module.exports = {
from: '/how-to/how-to-troubleshoot-feature-not-available', from: '/how-to/how-to-troubleshoot-feature-not-available',
to: '/using-unleash/troubleshooting/feature-not-available', to: '/using-unleash/troubleshooting/feature-not-available',
}, },
{
from: [
'/reference/deploy',
'/deploy',
],
to: '/using-unleash/deploy',
},
{ {
from: [ from: [
'/reference/deploy/getting-started', '/reference/deploy/getting-started',