Skip to content
This repository was archived by the owner on Jun 16, 2026. It is now read-only.

Commit ce42d58

Browse files
zijiexiaclaude
andcommitted
Deprecate site: redirect all pages to docs.sglang.io
The SGLang docs now live at https://docs.sglang.io/ (independent Vercel deployment). Turn this legacy GitHub Pages site into redirect-only stubs, rebuilt on top of the latest main. - Rewrite all 153 navigable pages into tiny stubs: instant <meta refresh> (Google treats a 0s refresh as a permanent redirect) + cross-domain rel=canonical, forwarding to the SAME path on the new site and preserving deep links, ?query and #anchor. No noindex -- it would contradict the canonical and prevent ranking signals from transferring. - Add a root 404.html catch-all that forwards any other path by pathname. - 9 pages with no counterpart on the new site fall back to the closest live page (release_lookup/* -> references/release_lookup.html, rest -> homepage); every unique target verified to return HTTP 200. - make_redirects.py / verify_redirects.py: regenerate and statically verify. - README: deprecation notice. NOTE: this repo is force-pushed by the sglang main repo's release-docs.yml workflow, which clears and overwrites the site on every docs build/release -- it already did so while this PR was open, which is what caused the conflict this commit resolves. That workflow's push to sgl-project.github.io must be disabled, or it will overwrite these redirects again. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 18d590e commit ce42d58

157 files changed

Lines changed: 2052 additions & 145785 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

404.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Page moved — SGLang Documentation</title>
6+
<link rel="canonical" href="https://docs.sglang.io/">
7+
<meta http-equiv="refresh" content="0; url=https://docs.sglang.io/">
8+
<script>
9+
// Forward any unknown old URL to the same path on the new docs site.
10+
location.replace("https://docs.sglang.io" + location.pathname + location.search + location.hash);
11+
</script>
12+
</head>
13+
<body>
14+
<p>This documentation has moved to <a href="https://docs.sglang.io/">https://docs.sglang.io</a>. Redirecting…</p>
15+
</body>
16+
</html>

README.html

Lines changed: 12 additions & 744 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 12 additions & 0 deletions

advanced_features/adaptive_speculative_decoding.html

Lines changed: 12 additions & 801 deletions
Large diffs are not rendered by default.

advanced_features/attention_backend.html

Lines changed: 12 additions & 1316 deletions
Large diffs are not rendered by default.

advanced_features/breakable_cuda_graph.html

Lines changed: 12 additions & 807 deletions
Large diffs are not rendered by default.

advanced_features/checkpoint_engine.html

Lines changed: 12 additions & 888 deletions
Large diffs are not rendered by default.

advanced_features/cuda_graph_for_multi_modal_encoder.html

Lines changed: 12 additions & 698 deletions
Large diffs are not rendered by default.

advanced_features/deterministic_inference.html

Lines changed: 12 additions & 848 deletions
Large diffs are not rendered by default.

advanced_features/dp_dpa_smg_guide.html

Lines changed: 12 additions & 1112 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)