CakePHP Routing Customization

I would like to format my URL like this:

/news/index/page:2

to

/news/2

I would like to achieve this result using as little code as possible (perhaps only with route.php?), Without changing the behavior of PaginatorHelper.

Thank you for your help!

+3
source share
1 answer

This should work

// Add this to /app/config/routes.php
Router::connect('/news/:page', array('controller' => 'news', 'action' => 'index'));
+4
source

Source: https://habr.com/ru/post/1792894/


All Articles