diff --git a/README.txt b/README.txt
index ef223df..0e41aaa 100644
--- a/README.txt
+++ b/README.txt
@@ -40,7 +40,7 @@ Settings
 You can configure what pages are visible/not visible to each of your user roles
 from the Drupal Users Administration section.
 
-Visit ?q=admin/people/pathaccess to edit the settings for each role group.
+Visit ?q=admin/config/people/pathaccess to edit the settings for each role group.
 
 Page visibility configuration is carried out in exactly the same way as block
 visibility in Drupal core.
diff --git a/path_access.module b/path_access.module
index 0ecb49c..95f31de 100644
--- a/path_access.module
+++ b/path_access.module
@@ -7,7 +7,7 @@
  * @author: Mike Carter <www.ixis.co.uk>
  * @author: CSÉCSY László <boobaa.no@spam.kybest.hu>
  * @author: Chris Burgess (@grobot) <www.giantrobot.co.nz>
- * @usage: ?q=admin/people/pathaccess to configure path restrictions for each role.
+ * @usage: ?q=admin/config/people/pathaccess to configure path restrictions for each role.
  */
 
 /**
@@ -15,7 +15,7 @@
  */
 function path_access_help($path, $arg) {
   switch ($path) {
-    case 'admin/people/pathaccess':
+    case 'admin/config/people/pathaccess':
       return t('Each user role can be granted or denied access to any url paths. This is a crude but straight forward way to restrict groups of nodes/pages to certain users using only the paths associated with the pages. Page access is not limited to node pages only, anything can be controlled using paths.');
   }
 }
@@ -55,13 +55,13 @@ function path_access_menu_alter(&$items) {
 function path_access_menu() {
   $items = array();
 
-  $items['admin/people/pathaccess/edit'] = array(
+  $items['admin/config/people/pathaccess/edit'] = array(
     'title' => t('configure role paths'),
     'page callback' => 'path_access_admin_role_configure',
     'access arguments' => array('administer url aliases'),
     'type' => MENU_CALLBACK,
   );
-  $items['admin/people/pathaccess'] = array(
+  $items['admin/config/people/pathaccess'] = array(
     'title' => t('Path Access'),
     'description' => t('Define what paths a user role can access.'),
     'page callback' => 'path_access_admin_roles',
@@ -125,7 +125,7 @@ function path_access_admin_roles() {
   $result = db_query('SELECT * FROM {role} ORDER BY name');
   $table['header'] = array(t('User Role'), t('Operations'));  
   foreach ($result as $role) {
-    $table['rows'][] = array($role->name, l(t('edit'), 'admin/people/pathaccess/edit/' . $role->rid));
+    $table['rows'][] = array($role->name, l(t('edit'), 'admin/config/people/pathaccess/edit/' . $role->rid));
   }
   $output = theme('table', $table);
 
@@ -210,7 +210,7 @@ function path_access_admin_configure_form_submit($form_id, &$form_state) {
   db_query("UPDATE {path_access} SET visibility = :visibility, pages = :pages WHERE rid = :rid", array(':rid' => $form_state['values']['rid'], ':visibility' => $form_state['values']['visibility'], ':pages' => $form_state['values']['pages']));
 
   drupal_set_message(t('The path access configuration has been saved.'));
-  $form_state['redirect'] = 'admin/people/pathaccess';
+  $form_state['redirect'] = 'admin/config/people/pathaccess';
 }
 
 /**
