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

Commit 1ac7b2a

Browse files
authored
added redirect to challenge listings
1 parent 48f28ec commit 1ac7b2a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/main/com/topcoder/web/tc/view/contest/activeContests.jsp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,13 @@
7070

7171
<body>
7272

73+
<%
74+
// New location to be redirected
75+
String site = new String("https://www.topcoder.com/challenges");
76+
response.setStatus(response.SC_MOVED_PERMANENTLY);
77+
response.setHeader("Location", site);
78+
%>
79+
7380
<jsp:include page="../top.jsp">
7481
<jsp:param name="level1" value="development"/>
7582
</jsp:include>

0 commit comments

Comments
 (0)