diff --git a/hosting.module b/hosting.module
index 0851c08..1b9e005 100644
--- a/hosting.module
+++ b/hosting.module
@@ -138,9 +138,33 @@ function hosting_menu() {
     'access arguments' => array('access task logs'),
   );
 
+  $items['hostmaster'] = array(
+    'title' => 'Hostmaster',
+    'description' => 'View and configure the Hostmaster site.',
+    'page callback' => 'hosting_menu_hostmaster_redirect',
+    'access callback' => 'hosting_menu_hostmaster_access',
+    'menu_name' =>'main-menu',
+    'type' => MENU_NORMAL_ITEM,
+    'weight' => 100,
+  );
   return $items;
 }
 
+/**
+ * Access hook for /hostmaster callback page. Checks the access for hostmaster node page.
+ * @return bool
+ */
+function hosting_menu_hostmaster_access() {
+  return drupal_valid_path('hosting/c/hostmaster');
+}
+
+/**
+ * Send the user from /hostmaster to /hosting/c/hostmaster
+ */
+function hosting_menu_hostmaster_redirect() {
+  drupal_goto('hosting/c/hostmaster');
+}
+
 /**
  * Page callback for a page to be rendered in modal frame.
  */
