Custom controller - Fuel Admin not accesible
    
        
                
            
                
                    Hello
I have changed the default controller to an own controller.
$route['default_controller'] = 'page';
$route['(:any)'] = "page/load/$1";
But since I did this, I can't reach the fuel CMS anymore. How can I fix this?
In MY_fuel.php; the URL to the fuel_path is still OK.
$config['fuel_path'] = 'fuel/';
EDIT:
Fixed!
$route['fuel/'] = "fuel/start";                
                             
         
     
 
                 
            
Comments
$route['fuel/'] = "fuel/start";
I want to use a custom controller, except for the fuel/admin.
How can I fix that?