I want to grab a variable from an url for redirects in my cakephp app ie
example.com/value -> example.com/controller/this:value
obviously, the rest of the routing should remain intact. Is this possible with routing in cakephp?
Im using cakephp 1.3
I want to check the URL first against a field in a database table, if it doesnt exist, then pass it through routing. I'm assuming this will be in the beforeFilter of the app controller.