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

Commit 2a5bf5c

Browse files
authored
added redirect to challenge listings
1 parent 1ac7b2a commit 2a5bf5c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/main/com/topcoder/web/tc/view/compstats/compList.jsp

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

9393
<body>
9494

95+
<%
96+
// New location to be redirected
97+
String site = new String("https://www.topcoder.com/challenges");
98+
response.setStatus(response.SC_MOVED_PERMANENTLY);
99+
response.setHeader("Location", site);
100+
%>
101+
95102
<jsp:include page="../top.jsp" >
96103
<jsp:param name="level1" value=""/>
97104
</jsp:include>

0 commit comments

Comments
 (0)