I am trying to get a route working, all I get so far is errors. So far I have:
$route['gig/(:any)/(:any)'] = "gig/details/$1/$2/$3";
$1 is a gigcode variable, $2 is the seller and $3 is the title. I want the url to say gig/seller/title? How would I go about achieving this?
(:any)is simply replaced with(.*)in codeigniter... have you tried putting adie('test')at the top of the controller gig/details ? if its getting to the controller its not a route problem. Also please try to be more specific with your feedback, rather than saying "some wierd view rendering errors" why not actually copy + paste the error you are getting. it will help us to help you.