diff --git a/spaces_og/plugins/space_og.inc b/spaces_og/plugins/space_og.inc
index 71f2576..43076bb 100644
--- a/spaces_og/plugins/space_og.inc
+++ b/spaces_og/plugins/space_og.inc
@@ -131,6 +131,11 @@ class space_og extends space_type_purl {
             $this->deactivate();
             return;
           }
+          // Else if url match node/nid, redirect to the group homepage
+          else if ($_GET['q'] == 'node/' . $node->nid) {
+            $space = spaces_load('og', $node->nid);
+            drupal_goto($space->group->purl . '/');
+          }
           // If editing or viewing an existing node, make sure we're in the correct space
           else if (isset($node->nid) && (!$this->active || ($this->active && $this->id != $node->nid)) && $space = spaces_load('og', $node->nid)) {
             $space->activate();
