diff --git a/config/nginx/default.conf b/config/nginx/default.conf
index 186fdcbf9648a0686c025d41d9f7beee3055235f..a4018957c78c126307393f1dc0ea8965edd5bec0 100644
--- a/config/nginx/default.conf
+++ b/config/nginx/default.conf
@@ -45,6 +45,11 @@ server {
   error_page 404 /404.html;
 
   location / {
+    # Configure redirect for /resources but omit /resources/marketplace
+    if ($request_uri ~ ^/resources/(?!marketplace)(.*)$) {
+      return 301 https://wiki.eclipse.org/Eclipse_Articles,_Tutorials,_Demos,_Books,_and_More;
+    }
+
     # www.eclipse.org/home
     # https://git.eclipse.org/c/www.eclipse.org/home.git/tree/
     rewrite /home/search.php /home/search redirect;