diff --git a/module/Frontend/Api/config/module.config.php b/module/Frontend/Api/config/module.config.php index b40fb17..288a60d 100644 --- a/module/Frontend/Api/config/module.config.php +++ b/module/Frontend/Api/config/module.config.php @@ -12,7 +12,7 @@ 'restapi' => array( 'type' => 'literal', 'options' => array( - 'route' => 'RESTful/api/', + 'route' => 'RESTful/api', 'defaults' => array( 'controller' => 'Frontend\Api\Controller\Api', 'action' => 'indexPublic' @@ -25,7 +25,7 @@ 'api' => array( 'type' => 'literal', 'options' => array( - 'route' => 'api/', + 'route' => '/api', 'defaults' => array( 'controller' => 'Frontend\Api\Controller\Api', 'action' => 'index' diff --git a/module/Frontend/Dashboard/config/module.config.php b/module/Frontend/Dashboard/config/module.config.php index 06cbfad..c4e6a29 100644 --- a/module/Frontend/Dashboard/config/module.config.php +++ b/module/Frontend/Dashboard/config/module.config.php @@ -13,7 +13,7 @@ 'user' => array( 'type' => 'literal', 'options' => array( - 'route' => 'user/', + 'route' => 'user', 'defaults' => array( 'controller' => 'Frontend\Dashboard\Controller\Dashboard', 'action' => 'index' @@ -25,7 +25,7 @@ 'home' => array( 'type' => 'literal', 'options' => array( - 'route' => 'home/', + 'route' => '/home', 'defaults' => array( 'controller' => 'Frontend\Dashboard\Controller\Dashboard', 'action' => 'index' @@ -37,7 +37,7 @@ 'donate' => array( 'type' => 'literal', 'options' => array( - 'route' => 'support/', + 'route' => '/support', 'defaults' => array( 'controller' => 'Frontend\Dashboard\Controller\Dashboard', 'action' => 'donate' @@ -49,7 +49,7 @@ 'account' => array( 'type' => 'literal', 'options' => array( - 'route' => 'account/', + 'route' => '/account', 'defaults' => array( 'controller' => 'Frontend\Dashboard\Controller\Account', 'action' => 'index' diff --git a/module/Frontend/Impressum/config/module.config.php b/module/Frontend/Impressum/config/module.config.php index 9520721..6955f5c 100644 --- a/module/Frontend/Impressum/config/module.config.php +++ b/module/Frontend/Impressum/config/module.config.php @@ -13,7 +13,7 @@ 'impressum' => array( 'type' => 'literal', 'options' => array( - 'route' => 'impressum/', + 'route' => 'impressum', 'defaults' => array( 'controller' => 'Frontend\Impressum\Controller\Impressum', 'action' => 'index' diff --git a/module/Frontend/Login/config/module.config.php b/module/Frontend/Login/config/module.config.php index da39ea3..7688bd3 100644 --- a/module/Frontend/Login/config/module.config.php +++ b/module/Frontend/Login/config/module.config.php @@ -14,7 +14,7 @@ 'register' => array( 'type' => 'literal', 'options' => array( - 'route' => 'register/', + 'route' => '/register', 'defaults' => array( 'controller' => 'Frontend\Login\Controller\Login', 'action' => 'register' @@ -24,7 +24,7 @@ 'login' => array( 'type' => 'literal', 'options' => array( - 'route' => 'login/', + 'route' => '/login', 'defaults' => array( 'controller' => 'Frontend\Login\Controller\Login', 'action' => 'login' @@ -34,7 +34,7 @@ 'logout' => array( 'type' => 'literal', 'options' => array( - 'route' => 'logout/', + 'route' => '/logout', 'defaults' => array( 'controller' => 'Frontend\Login\Controller\Login', 'action' => 'logout' diff --git a/module/Frontend/Squads/config/module.config.php b/module/Frontend/Squads/config/module.config.php index 418bbcb..d6258a2 100644 --- a/module/Frontend/Squads/config/module.config.php +++ b/module/Frontend/Squads/config/module.config.php @@ -14,7 +14,7 @@ 'squads' => array( 'type' => 'literal', 'options' => array( - 'route' => 'squads/', + 'route' => '/squads', 'defaults' => array( 'controller' => 'Frontend\Squads\Controller\Squads', 'action' => 'index', @@ -27,7 +27,7 @@ 'xml' => array( 'type' => 'segment', 'options' => array( - 'route' => 'xml/:id/[squad.xml]', + 'route' => '/xml/:id/[squad.xml]', 'defaults' => array( 'controller' => 'Frontend\Squads\Controller\SquadXml', 'action' => 'squadFile' @@ -116,7 +116,7 @@ 'create' => array( 'type' => 'segment', 'options' => array( - 'route' => 'create/', + 'route' => '/create', 'defaults' => array( 'controller' => 'Frontend\Squads\Controller\Squads', 'action' => 'create', @@ -127,7 +127,7 @@ 'delete' => array( 'type' => 'segment', 'options' => array( - 'route' => 'delete/:id/', + 'route' => '/delete/:id', 'defaults' => array( 'controller' => 'Frontend\Squads\Controller\Squads', 'action' => 'delete' @@ -137,7 +137,7 @@ 'edit' => array( 'type' => 'segment', 'options' => array( - 'route' => 'edit/:id/', + 'route' => '/edit/:id', 'defaults' => array( 'controller' => 'Frontend\Squads\Controller\Squads', 'action' => 'edit' @@ -147,7 +147,7 @@ 'member' => array( 'type' => 'segment', 'options' => array( - 'route' => 'member/:id/', + 'route' => '/member/:id', 'defaults' => array( 'controller' => 'Frontend\Squads\Controller\SquadMember', 'action' => 'edit' @@ -157,7 +157,7 @@ 'download' => array( 'type' => 'segment', 'options' => array( - 'route' => 'download/:id/', + 'route' => '/download/:id', 'defaults' => array( 'controller' => 'Frontend\Squads\Controller\Squads', 'action' => 'download'