1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-15 01:16:22 +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: [
'/user_guide/important-concepts',
'/tutorials/important-concepts',
'/reference/concepts/',
],
to: '/reference',
},
@ -532,7 +533,10 @@ module.exports = {
to: '/',
},
{
from: '/topics/feature-flags/tutorials',
from: [
'/topics/feature-flags/tutorials',
'/tutorials',
],
to: '/feature-flag-tutorials',
},
{
@ -574,19 +578,31 @@ module.exports = {
to: '/understanding-unleash/unleash-overview',
},
{
from: '/tutorials/managing-constraints',
from: [
'/tutorials/managing-constraints',
'/topics/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',
},
{
from: '/tutorials/proxy-hosting',
from: [
'/tutorials/proxy-hosting',
'/topics/proxy-hosting',
],
to: '/understanding-unleash/proxy-hosting',
},
{
from: '/tutorials/data-collection',
from: [
'/tutorials/data-collection',
'/topics/data-collection',
],
to: '/understanding-unleash/data-collection',
},
@ -606,6 +622,13 @@ module.exports = {
from: '/how-to/how-to-troubleshoot-feature-not-available',
to: '/using-unleash/troubleshooting/feature-not-available',
},
{
from: [
'/reference/deploy',
'/deploy',
],
to: '/using-unleash/deploy',
},
{
from: [
'/reference/deploy/getting-started',