I have a question about zend framework 2 router. I have a table "seourl" in mysql like that:
url module controller action param
test123 catalog product view 5
abc123 catalog product view 6
other catalog category view 10
I want to include these urls in router.
In the url field i can have url like that: others/product/ (i want to route any type of url from this table)
Thanks in advance.
Later Edit:
I want to route each url from this table.
Example:
example.com/test123 will load module catalog
/ controller product
/ action view
/ param 5
example.com/other will load module catalog
/ controller category
/ action view
/ param 10