I want to generate URL's that can handle multiple parameters as follows.
www.mysite.com/index.php/controller/param1/param2/param3/param4/mySlug
But still be able to be flexible and pass over less information
www.mysite.com/index.php/controller/param1/parama/my_slug_2
We could assume there's always a slug at the end if that makes this easier. Is there anything in the Yii2 urlManager I can implement this.