Skip to content

Commit a99cf50

Browse files
Add GitHub Pages redirect to docs.rs
This enables https://modelcontextprotocol.github.io/rust-sdk to redirect visitors to the official documentation hosted at https://docs.rs/rmcp. The redirect uses both meta refresh and JavaScript for maximum browser compatibility, with a fallback link for users who have redirects disabled.
0 parents  commit a99cf50

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="refresh" content="0; url=https://docs.rs/rmcp">
6+
<title>Redirecting to docs.rs</title>
7+
</head>
8+
<body>
9+
<p>Redirecting to <a href="https://docs.rs/rmcp">https://docs.rs/rmcp</a>...</p>
10+
<script>window.location.href = "https://docs.rs/rmcp";</script>
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)