Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 4708528

Browse files
authored
redirect to new challenge pages
1 parent 2a5bf5c commit 4708528

File tree

1 file changed

+7
-0
lines changed
  • src/main/com/topcoder/web/studio/view

1 file changed

+7
-0
lines changed

src/main/com/topcoder/web/studio/view/login.jsp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
99
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1010

11+
<%
12+
// New location to be redirected
13+
String site = new String("https://www.topcoder.com/challenges");
14+
response.setStatus(response.SC_MOVED_PERMANENTLY);
15+
response.setHeader("Location", site);
16+
%>
17+
1118
<head>
1219
<link type="image/x-icon" rel="shortcut icon" href="/i/favicon.ico" />
1320
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

0 commit comments

Comments
 (0)