From d95a58aa44f6939a97826554013fbb7933a7c42c Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:11:44 +1000 Subject: [PATCH] adding redirects --- nginx/includes/redirects.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx/includes/redirects.conf b/nginx/includes/redirects.conf index 00ebc685f..4bdbb5cd0 100644 --- a/nginx/includes/redirects.conf +++ b/nginx/includes/redirects.conf @@ -159,3 +159,6 @@ rewrite ^/docs/smart-contracts/guides(.*)$ "/docs/build/guides$1" permanent; rewrite ^/docs/smart-contracts/smart-wallets(.*)$ "/docs/build/apps/smart-wallets$1" permanent; rewrite ^/docs/smart-contracts/getting-started/create-an-app(.*)$ "/docs/build/apps/dapp-frontend$1" permanent; rewrite ^/docs/smart-contracts(.*)$ "/docs/build/smart-contracts$1" permanent; + +# Moving testing docs around +rewrite ^/docs/build/guides/testing/detecting-changes-with-test-snapshots$ "/docs/build/guides/testing/differential-tests-with-test-snapshots" permanent;