You can easily configure the dynamic router. The router uses a fallback route so it’s important to add the CMS routes at
the very end of your routes file. The Firepit CMS has a very simple helper method for registering the routes.
Copy
<?php// Any existing hard coded routesRoute::view('/', 'welcome');// Register CMS routes by adding this at the very bottom of the filecms()->routes();