Default route is matched instead specific route
- by Supertino7
www.domain.com
community
:action/*
member/profile-(\d+)-(.+)
member/profile-%d-%s
1
2
As you can see, I use a route with :action/* in to cover the homepages and the basics actions on index controller.
domain.com/community/random_action = works good.
domain.com/community/ doesn't work. The whole homepage is displayed.
I checked, and the default route is matched.
I tried assemble() on route "www-community-index" and it gives well www.domain.com/community
I don't see from where comes the problem :(