$route['settings'] = 'settings';
$route['account'] = 'account';
$route['page'] = 'page';
$route['questions'] = 'questions';
$route['about'] = 'about';
$route['auth'] = 'auth';
$route['settings/(:any)'] = 'settings/$1';
$route['account/(:any)'] = 'account/$1';
$route['page/(:any)'] = 'page/$1';
$route['questions/(:any)'] = 'questions/$1';
$route['about/(:any)'] = 'about/$1';
$route['auth/(:any)'] = 'auth/$1';
$route['settings/(:any)/(:any)'] = 'settings/$1/$2';
$route['account/(:any)/(:any)'] = 'account/$1/$2';
$route['page/(:any)/(:any)'] = 'page/$1/$2';
$route['questions/(:any)/(:any)'] = 'questions/$1/$2';
$route['about/(:any)/(:any)'] = 'about/$1/$2';
$route['auth/(:any)/(:any)'] = 'auth/$1/$2';
$route['(:any)'] = "account/index/$1";