diff --git a/modules/state_flow/state_flow.module b/modules/state_flow/state_flow.module
index 2f80b7d..b02ef6b 100644
--- a/modules/state_flow/state_flow.module
+++ b/modules/state_flow/state_flow.module
@@ -50,20 +50,6 @@ function state_flow_menu() {
     'type' => MENU_NORMAL_ITEM | MENU_LOCAL_TASK,
     'file' => 'state_flow.admin.inc',
   );
-  $items['admin/structure/state-flow-history-entity'] = array(
-   'title' => 'State Flow History Entities',
-     // @todo make more descriptive once this path does something.
-    'description' => 'Add fields to State Flow History Entities.',
-    'page callback' => 'state_flow_history_entity_admin',
-    'access arguments' => array('manage content workflow'),
-  );
-  // @todo, this path might list bundles for state-flow-history-entities.
-  // If it does not not, use an argument other than /list.
-  $items['admin/structure/state-flow-history-entity/list'] = array(
-    'title' => 'List',
-    'type' => MENU_DEFAULT_LOCAL_TASK,
-    'weight' => -10,
-  );
 
   return $items;
 }
@@ -101,18 +87,6 @@ function state_flow_node_edit_page_override($node) {
   return node_page_edit($node);
 }
 
-
-
-/**
- * Returns the configuration page for state flow history entities.
- *
- * @todo, this path is still a placeholder. It may eventually list different bundles
- * for the state_flow_history_entity entity_type.
- */
-function state_flow_history_entity_admin() {
-  return t('This is a placeholder for making state change records be entities themselves. This is discussed at http://drupal.org/node/1412728.');
-}
-
 /**
  * Implements hook_permission().
  */
diff --git a/modules/state_flow_entity/state_flow_entity.module b/modules/state_flow_entity/state_flow_entity.module
index 97ad8ce..a268be6 100644
--- a/modules/state_flow_entity/state_flow_entity.module
+++ b/modules/state_flow_entity/state_flow_entity.module
@@ -306,7 +306,7 @@ function state_flow_entity_entity_info() {
         'state_flow_history_entity' => array(
          'label' => t('State Flow'),
           'admin' => array(
-            'path' => 'admin/structure/state-flow-history-entity',
+            'path' => 'admin/config/workflow/state-flow-history-entity',
             'access arguments' => array(
               'manage content workflow',
             ),
@@ -320,6 +320,40 @@ function state_flow_entity_entity_info() {
 }
 
 /**
+ * Implements hook_menu().
+ */
+function state_flow_entity_menu() {
+  $items = array();
+
+  $items['admin/config/workflow/state-flow-history-entity'] = array(
+   'title' => 'State Flow History Entities',
+     // @todo make more descriptive once this path does something.
+    'description' => 'Add fields to State Flow History Entities.',
+    'page callback' => 'state_flow_entity_history_entity_admin',
+    'access arguments' => array('manage content workflow'),
+  );
+  // @todo, this path might list bundles for state-flow-history-entities.
+  // If it does not not, use an argument other than /list.
+  $items['admin/config/workflow/state-flow-history-entity/list'] = array(
+    'title' => 'List',
+    'type' => MENU_DEFAULT_LOCAL_TASK,
+    'weight' => -10,
+  );
+
+  return $items;
+}
+
+/**
+ * Returns the configuration page for state flow history entities.
+ *
+ * @todo, this path is still a placeholder. It may eventually list different bundles
+ * for the state_flow_history_entity entity_type.
+ */
+function state_flow_entity_history_entity_admin() {
+  return t('This is a placeholder for bundle administration. This is discussed at http://drupal.org/node/1412728.');
+}
+
+/**
  * An Entity API Getter callback for the state_flow_history_entity state label.
  *
  * This is the value used be the entity
