Redirect both /system/console and /system/console/ to the default page, 
otherwise /system/console/ would resolve to an empty label, for which
no page exists.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@667547 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/java/org/apache/felix/webconsole/internal/servlet/OsgiManager.java b/webconsole/src/main/java/org/apache/felix/webconsole/internal/servlet/OsgiManager.java
index 170f876..421fedc 100644
--- a/webconsole/src/main/java/org/apache/felix/webconsole/internal/servlet/OsgiManager.java
+++ b/webconsole/src/main/java/org/apache/felix/webconsole/internal/servlet/OsgiManager.java
@@ -293,7 +293,7 @@
         }
 
         // check whether we are not at .../{webManagerRoot}
-        if ( request.getPathInfo() == null )
+        if ( request.getPathInfo() == null || request.getPathInfo().equals( "/" ) )
         {
             String path = request.getRequestURI();
             if ( !path.endsWith( "/" ) )