From be077c4ef22410c33377e510a0f23d0e2ef994d1 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Sat, 15 Nov 2025 10:31:41 +0100 Subject: [PATCH 1/2] Remove obsolete placeholder for `download/gui` This is already handled by an alias in `content/tools/gui/_index.html`. Even more importantly: it broke the redirection of `download/` because `content/download/` lacks an `_index.html` file. This fixes https://github.com/git/git-scm.com/issues/2111. Signed-off-by: Johannes Schindelin --- content/download/gui/_index.html | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 content/download/gui/_index.html diff --git a/content/download/gui/_index.html b/content/download/gui/_index.html deleted file mode 100644 index ecf3ab264a..0000000000 --- a/content/download/gui/_index.html +++ /dev/null @@ -1,3 +0,0 @@ ---- -redirect_to: downloads/guis ---- From 02def6b0123ffe20dda21fd2370d938375da570f Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Sat, 15 Nov 2025 10:32:00 +0100 Subject: [PATCH 2/2] Redirect `doc/` to `docs` There is an alias in `content/docs/_index.html` for that redirection, that is true. Such aliases only work if there is no corresponding directory in `content/`, however, otherwise the `list` template kicks in (which requires a special-form `_index.html` to redirect). Signed-off-by: Johannes Schindelin --- content/doc/_index.html | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 content/doc/_index.html diff --git a/content/doc/_index.html b/content/doc/_index.html new file mode 100644 index 0000000000..3a9d7638f6 --- /dev/null +++ b/content/doc/_index.html @@ -0,0 +1,3 @@ +--- +redirect_to: docs +---