Adding redirects for old pages that were served and indexed.
Fixes #2551
Closes #2565.
--
Reviewed-on: https://github.com/bazelbuild/bazel/pull/2565
PiperOrigin-RevId: 149755159
MOS_MIGRATED_REVID=149755159
diff --git a/site/_layouts/regular-redirect.html b/site/_layouts/regular-redirect.html
new file mode 100644
index 0000000..2418143
--- /dev/null
+++ b/site/_layouts/regular-redirect.html
@@ -0,0 +1,7 @@
+<html>
+ <head>
+ <script>
+ window.location.replace("{{ page.redirect }}" + window.location.hash);
+ </script>
+ </head>
+</html>
\ No newline at end of file
diff --git a/site/docs/be/docker.md b/site/docs/be/docker.md
new file mode 100644
index 0000000..9279688
--- /dev/null
+++ b/site/docs/be/docker.md
@@ -0,0 +1,4 @@
+---
+layout: redirect
+redirect: docs/be/docker.html
+---
\ No newline at end of file
diff --git a/site/docs/be/pkg.md b/site/docs/be/pkg.md
new file mode 100644
index 0000000..b5cdea0
--- /dev/null
+++ b/site/docs/be/pkg.md
@@ -0,0 +1,4 @@
+---
+layout: redirect
+redirect: docs/be/pkg.html
+---
\ No newline at end of file
diff --git a/site/docs/cpp.md b/site/docs/cpp.md
new file mode 100644
index 0000000..10cf714
--- /dev/null
+++ b/site/docs/cpp.md
@@ -0,0 +1,4 @@
+---
+layout: redirect
+redirect: docs/tutorial/cpp.html
+---
\ No newline at end of file
diff --git a/site/docs/skyframe.md b/site/docs/skyframe.md
new file mode 100644
index 0000000..d0835fd
--- /dev/null
+++ b/site/docs/skyframe.md
@@ -0,0 +1,4 @@
+---
+layout: regular-redirect
+redirect: /designs/skyframe.html
+---
\ No newline at end of file
diff --git a/site/docs/tutorial/index.md b/site/docs/tutorial/index.md
new file mode 100644
index 0000000..3d2efad
--- /dev/null
+++ b/site/docs/tutorial/index.md
@@ -0,0 +1,4 @@
+---
+layout: redirect
+redirect: docs/tutorial/app.html
+---
\ No newline at end of file
diff --git a/site/users.md b/site/users.md
new file mode 100644
index 0000000..8c4593c
--- /dev/null
+++ b/site/users.md
@@ -0,0 +1,6 @@
+---
+layout: contribute
+title: Bazel Users
+---
+
+Find a community curated a list of Bazel users in the [Bazel GitHub wiki](https://github.com/bazelbuild/bazel/wiki/Bazel-Users)
\ No newline at end of file