diff options
Diffstat (limited to 'core/config/routes.php')
-rw-r--r-- | core/config/routes.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/config/routes.php b/core/config/routes.php index 465fb885..567e999e 100644 --- a/core/config/routes.php +++ b/core/config/routes.php @@ -24,7 +24,9 @@ $config['^rest'] = null; $config['^rest/.*'] = null; $config['^(\w+)/(\d+)$'] = '$1/dispatch/$2'; -$config['^form/(\w+)/(.*)$'] = '$1/form/$2'; +// @todo The following will need to support query strings. +$config['^(\w+)$'] = '$1/index'; +$config['^form/(\w+)/(\w+)/(.*)$'] = '$2/form/$3/$1'; // For now our default page is the scaffolding. $config['_default'] = 'welcome'; |