Cakephp - How to construct custom URLs from a drop down select input?

Algoltardog

New Member
I am trying to use a drop down input in my cakephp application, with this I want the drop down on submit to render the url like so:www.example.com/cake/FILE/VALUEHowever the only url i can get the select input to create is the following:www.example.com/cake/FILE?form_value=http://stackoverflow.com/questions/3752142/VALUEHow do I go about making the URL SEO friendly like the first example without using httaccess because I want the URL to appear seo friendly in the search engines eyes.Here is the code I am using.In The VIEW\[code\]echo $form->input('form_value', array( 'label' => '', 'type' => 'select', 'options' => $listOfOptions, 'selected' => '0',));\[/code\]Thank you.
 
Back
Top