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

Commit 8b94dec

Browse files
authored
Redirect roocode.com to roomote.dev (#12374)
1 parent f49f0ce commit 8b94dec

1 file changed

Lines changed: 1 addition & 76 deletions

File tree

apps/web-roo-code/next.config.ts

Lines changed: 1 addition & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -7,84 +7,9 @@ const nextConfig: NextConfig = {
77
},
88
async redirects() {
99
return [
10-
// Redirect www to non-www
1110
{
1211
source: "/:path*",
13-
has: [{ type: "host", value: "www.roocode.com" }],
14-
destination: "https://roocode.com/:path*",
15-
permanent: true,
16-
},
17-
// Redirect HTTP to HTTPS
18-
{
19-
source: "/:path*",
20-
has: [{ type: "header", key: "x-forwarded-proto", value: "http" }],
21-
destination: "https://roocode.com/:path*",
22-
permanent: true,
23-
},
24-
// Redirect cloud waitlist to Notion page (kept for extension compatibility)
25-
{
26-
source: "/cloud-waitlist",
27-
destination: "https://roo-code.notion.site/238fd1401b0a8087b858e1ad431507cf?pvs=105",
28-
permanent: false,
29-
},
30-
{
31-
source: "/extension",
32-
destination: "/",
33-
permanent: true,
34-
},
35-
{
36-
source: "/provider/pricing",
37-
destination: "/",
38-
permanent: true,
39-
},
40-
{
41-
source: "/pricing",
42-
destination: "/",
43-
permanent: true,
44-
},
45-
{
46-
source: "/provider",
47-
destination: "/",
48-
permanent: true,
49-
},
50-
{
51-
source: "/cloud",
52-
destination: "/",
53-
permanent: true,
54-
},
55-
{
56-
source: "/cloud/team",
57-
destination: "/",
58-
permanent: true,
59-
},
60-
{
61-
source: "/enterprise",
62-
destination: "/",
63-
permanent: true,
64-
},
65-
{
66-
source: "/slack",
67-
destination: "/",
68-
permanent: true,
69-
},
70-
{
71-
source: "/linear",
72-
destination: "/",
73-
permanent: true,
74-
},
75-
{
76-
source: "/reviewer",
77-
destination: "/",
78-
permanent: true,
79-
},
80-
{
81-
source: "/pr-fixer",
82-
destination: "/",
83-
permanent: true,
84-
},
85-
{
86-
source: "/github",
87-
destination: "/",
12+
destination: "https://roomote.dev",
8813
permanent: true,
8914
},
9015
]

0 commit comments

Comments
 (0)