From e09ef2484c9a1ed1c2cc7eebd717c4414c5af45b Mon Sep 17 00:00:00 2001 From: Yuliya Prihodko <107035036+pressayuliya@users.noreply.github.com> Date: Thu, 21 Nov 2024 10:34:20 +0300 Subject: [PATCH] EPMRPP-97063 || Add redirects for pages with 'Page not found' status (#833) * EPMRPP-97063 || Add redirects for pages that have the status "Page not found" * EPMRPP-97063 || Add redirects for pages that have the status "Page not found" * EPMRPP-97063 || Add redirects for pages that have the status "Page not found" * EPMRPP-97063 || Add redirects for pages that have the status "Page not found" --------- Co-authored-by: Yuliya_Prihodko --- docs/releases/Version5.7.3.md | 2 +- docusaurus.config.js | 26 +++++++++++++++++++++----- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/docs/releases/Version5.7.3.md b/docs/releases/Version5.7.3.md index d756b55e0..7b72ddf1d 100644 --- a/docs/releases/Version5.7.3.md +++ b/docs/releases/Version5.7.3.md @@ -19,7 +19,7 @@ sidebar_label: Version 5.7.3 ## Bugfixing: We have refactored logs double-entry saving to Elasticsearch by changing index type: now logs are saved in indexes per project instead of indexes per launch. It helps us to save the performance of Elasticsearch considering other operations and the data which we have processed via Elastic. -More details can be found via the [link](https://reportportal.io/blog/performance-improvements-in-5.7.3). +More details can be found via the [link](https://reportportal.io/blog/performance-improvements-in-5-7-3). ## Technical updates: diff --git a/docusaurus.config.js b/docusaurus.config.js index 5e9bcfde4..7f12e8dac 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -242,7 +242,7 @@ const config = { redirects: [ { to: '/installation-steps', - from: '/category/installation-steps', + from: ['/category/installation-steps', '/Installation-steps'], }, { to: '/features', @@ -298,7 +298,7 @@ const config = { }, { to: '/installation-steps/DeployWithDocker', - from: ['/installation-steps/DeployWithDockerOnLinuxMac', '/Deploy-with-Docker', '/installation-steps/DeployWithDockerOnWindows'], + from: ['/installation-steps/DeployWithDockerOnLinuxMac', '/Deploy-with-Docker', '/installation-steps/DeployWithDockerOnWindows', '/Installation/Docker'], }, { to: '/plugins/authorization/SamlProviders', @@ -490,7 +490,7 @@ const config = { }, { to: '/tutorial', - from: '/reportportal-tutorial', + from: ['/reportportal-tutorial','/What-is-ReportPortal'], }, { to: '/glossary', @@ -526,11 +526,11 @@ const config = { }, { to: '/configuration/ProjectSettings', - from: '/configuration/ProjectConfiguration', + from: ['/configuration/ProjectConfiguration', '/reportportal-configuration/ProjectConfiguration'], }, { to: '/admin-panel/AllProjectsPage', - from: '/configuration/CreationOfProjectAndAddingUsers', + from: ['/configuration/CreationOfProjectAndAddingUsers', '/reportportal-configuration/CreationOfProjectAndAddingUsers'], }, { to: '/installation-steps-advanced/ScalingReportPortalServices', @@ -544,6 +544,22 @@ const config = { to: '/plugins/authorization/SamlProviders', from: '/category/saml-providers', }, + { + to: '/work-with-reports/TestCaseId#what-does-happen-if-you-do-not-report-items-with-test-case-id', + from: '/Test-case-ID>what-does-happen-if-you-do-not-report-items-with-test-case-id-', + }, + { + to: '/work-with-reports/TestCaseId#what-is-it-test-case-id', + from: '/Test-case-ID>what-is-it-test-case-id', + }, + { + to: '/dashboards-and-widgets/CumulativeTrendChart', + from: '/Cumulative-trend-chart', + }, + { + to: '/api/intro', + from: '/docs/api', + }, ], }, ],