From f94ea2f0c54d9203e2831885ee43da06877f373e Mon Sep 17 00:00:00 2001 From: Christopher Hakkaart Date: Wed, 18 Mar 2026 15:00:38 +1300 Subject: [PATCH 1/2] Add redirects to new docs site --- netlify.toml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/netlify.toml b/netlify.toml index 1079e0202..54ae6c7af 100644 --- a/netlify.toml +++ b/netlify.toml @@ -39,4 +39,24 @@ [[redirects]] from = "/example5.html" - to = "/machine-learning-pipeline.html" \ No newline at end of file + to = "/machine-learning-pipeline.html" + +[[redirects]] + from = "/docs/" + to = "https://docs.seqera.io/nextflow/" + status = 301 + +[[redirects]] + from = "/docs/latest/*" + to = "https://docs.seqera.io/nextflow/:splat" + status = 301 + +[[redirects]] + from = "/docs/edge/*" + to = "https://docs.seqera.io/nextflow/:splat" + status = 301 + +[[redirects]] + from = "/docs/stable/*" + to = "https://docs.seqera.io/nextflow/:splat" + status = 301 From 6a6c2ea46e108b83a5a00203a2734fe7d0dc9ace Mon Sep 17 00:00:00 2001 From: Christopher Hakkaart Date: Wed, 18 Mar 2026 15:08:05 +1300 Subject: [PATCH 2/2] Force redirects --- netlify.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/netlify.toml b/netlify.toml index 54ae6c7af..b932e4cfb 100644 --- a/netlify.toml +++ b/netlify.toml @@ -45,18 +45,22 @@ from = "/docs/" to = "https://docs.seqera.io/nextflow/" status = 301 + force = true [[redirects]] from = "/docs/latest/*" to = "https://docs.seqera.io/nextflow/:splat" status = 301 + force = true [[redirects]] from = "/docs/edge/*" to = "https://docs.seqera.io/nextflow/:splat" status = 301 + force = true [[redirects]] from = "/docs/stable/*" to = "https://docs.seqera.io/nextflow/:splat" status = 301 + force = true