Skip to content

Commit

Permalink
Add redirects from 404 logs (#5356)
Browse files Browse the repository at this point in the history
Add more redirects from the docs refactor
  • Loading branch information
dgorton committed Nov 17, 2023
1 parent 9ef78a5 commit fd099e2
Showing 1 changed file with 28 additions and 5 deletions.
33 changes: 28 additions & 5 deletions website/docusaurus.config.js
Expand Up @@ -431,6 +431,7 @@ module.exports = {
from: [
'/user_guide/important-concepts',
'/tutorials/important-concepts',
'/reference/concepts/',
],
to: '/reference',
},
Expand Down Expand Up @@ -532,7 +533,10 @@ module.exports = {
to: '/',
},
{
from: '/topics/feature-flags/tutorials',
from: [
'/topics/feature-flags/tutorials',
'/tutorials',
],
to: '/feature-flag-tutorials',
},
{
Expand Down Expand Up @@ -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',
},

Expand All @@ -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',
Expand Down

0 comments on commit fd099e2

Please sign in to comment.