diff --git a/web/landing/src/Flow/Website/Controller/DefaultController.php b/web/landing/src/Flow/Website/Controller/DefaultController.php index 5a9610da9..e1de61ce8 100644 --- a/web/landing/src/Flow/Website/Controller/DefaultController.php +++ b/web/landing/src/Flow/Website/Controller/DefaultController.php @@ -16,7 +16,7 @@ public function __construct( ) { } - #[Route('/{topic}/{example}', name: 'example')] + #[Route('/{topic}/{example}/', name: 'example')] public function example(string $topic, string $example) : Response { $topics = $this->examples->topics(); @@ -54,7 +54,7 @@ public function main() : Response ]); } - #[Route('/{topic}', name: 'topic')] + #[Route('/{topic}/', name: 'topic')] public function topic(string $topic) : Response { $topics = $this->examples->topics();