[eluser]Aken[/eluser]
It means that the method's parameters will ignore the URL in the browser if the URL has been moved using routes.
Example controller:
Code:
class Example extends CI_Controller {
public function yourmethod($var1, $var2)
{
var_dump($var1, $var2);
}
}
Example route:
Code:
$route['fakecontroller/fakemethod/newvar/newvar2'] = 'example/yourmethod/oldvar/oldvar2';
If you go to your routed URL,
http://www.example.com/fakecontroller/fa...ar/newvar2, you'll see that those extra segments are not passed to the method's params. It will only use the routed (or "standard") URL segments.