Let's say I use a user controller to have a url / interface name for
/customcategory
Well, obviously, if I have a controller file called TestController.php and indexAction, the URL path would be
/customcategory/test/index
What I am trying to understand is how I rename Test Controller or modify the xml configuration file, so I may have a hyphen URL from the controller file, e.g.
/customcategory/test-section/index
I know that if I want /customcategory be portable, I can just change the frontend tag in the configuration file. But the site that I create will benefit from the route with a portable controller, the part that appears after the /customcategory with keywords, and I canβt get it to work, and I canβt find an example on google - as crazy as it might seem.
Thank you for your time.
source share