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

Commit 48f28ec

Browse files
authored
added redirect to new challenge listings
1 parent 9ca1ee7 commit 48f28ec

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@
5050
</head>
5151

5252
<body>
53+
54+
<%
55+
// New location to be redirected
56+
String site = new String("https://www.topcoder.com/challenges");
57+
response.setStatus(response.SC_MOVED_PERMANENTLY);
58+
response.setHeader("Location", site);
59+
%>
5360

5461
<c:set value="<%=Constants.DESIGN_PROJECT_TYPE%>" var="DESIGN_TYPE_ID"/>
5562
<c:set value="<%=Constants.DEVELOPMENT_PROJECT_TYPE%>" var="DEVELOPMENT_TYPE_ID"/>

0 commit comments

Comments
 (0)