Porque você não altera o teu route com um pattern para atender as tuas
necessidades ou atrav[es do teu htaccess!

http://codeigniter.com/user_guide/general/routing.html
Regular Expressions

If you prefer you can use regular expressions to define your routing rules.
Any valid regular expression is allowed, as are back-references.

*Note:*  If you use back-references you must use the dollar syntax rather
than the double backslash syntax.

A typical RegEx route might look something like this:
$route['products/([a-z]+)/(\d+)'] = "$1/id_$2";

In the above example, a URI similar to products/shirts/123 would instead
call the shirts controller class and the id_123 function.

You can also mix and match wildcards with regular expressions.


-- 
Abraços......

Marcel Araujo
System Analyst
Developer Java/PHP/RIA
Linux User #490101
http://br.linkedin.com/in/marcelaraujo
http://www.twitter.com/marcelaraujo
_______________________________________________
Lista mailing list
[email protected]
http://codeigniter.com.br/mailman/listinfo/lista_codeigniter.com.br

Responder a