How can i change the following url
from:
http://localhost/autoquest/index.php/autos?category=camry
to:
http://localhost/autoquest/index.php/autos/camry
using codeigniter. The category option camry comes from a select option such as:
<select id="category" name="category" onchange="this.form.submit()">
<option value="camry">car 1</option>
<option value="octavia">car 2</option>
<option value="volvo">car 3</option>
</select>
I think the second url is better in terms of SEO am i wrong?
Thanks all.