What I want to do is remove all instances of c_*/ where * could be any digit or character of any length.
$cano = 'www.example.com/example/example2/c_3/example4/';
$cano = preg_replace('c_*/', '', $cano);
I've always been bad with these cause I hardly use them...