This is an automated email from the ASF dual-hosted git repository.
martijnvisser pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 953ac958a05 [hotfix][docs] Fix redirect template to use relURL for
correct base path
953ac958a05 is described below
commit 953ac958a05512953fa72446b3436ebbb9468406
Author: Martijn Visser <[email protected]>
AuthorDate: Tue Feb 10 16:30:12 2026 +0100
[hotfix][docs] Fix redirect template to use relURL for correct base path
---
docs/layouts/_default/redirect.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/layouts/_default/redirect.html
b/docs/layouts/_default/redirect.html
index 09158e5c4d0..25a14475fc4 100644
--- a/docs/layouts/_default/redirect.html
+++ b/docs/layouts/_default/redirect.html
@@ -20,11 +20,11 @@ under the License.
<html lang="{{ .Site.Language.Lang }}">
<head>
<meta charset="UTF-8">
- <meta http-equiv="refresh" content="0; url={{ .Params.redirect_to }}">
- <link rel="canonical" href="{{ .Params.redirect_to }}">
+ <meta http-equiv="refresh" content="0; url={{ .Params.redirect_to | relURL
}}">
+ <link rel="canonical" href="{{ .Params.redirect_to | relURL }}">
<title>Redirecting...</title>
</head>
<body>
- <p>This page has moved. If you are not redirected automatically, <a
href="{{ .Params.redirect_to }}">click here</a>.</p>
+ <p>This page has moved. If you are not redirected automatically, <a
href="{{ .Params.redirect_to | relURL }}">click here</a>.</p>
</body>
</html>