Is there anyway to create a vanity url “catch all” route whilst maintaining the default /module/controller/action/value routing structure?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use the PreDispatch() hook on a front controller plugin. Like so:
In your bootstrap
Then inside Mystuff/Frontplugin.php
Also preDispatch() is a handy location to handle application wide authentication.