Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Codeigniter Routes Controller Sub Folder

I've a problem with routes and controller. I've got 2 types of controller: first type is used to manage the webpages, second type is used for cms and I prefer to put them in a sub-folder. Example:

/controller/site.php (for webpages)
/controller/admin/ (for controllers to manage cms)

in routes.php I've write:

$route['(:any)'] = "site/$1";
$route['admin/(:any)'] = "admin/$1";

I've got the file .htacces set in this way:

RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt|css|js|font|woff|ttf|svg|eot|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

and this variable on config.php:

$config['index'] = '';

but it works only for "site". If I write "mywebsite/admin/login" for example, it return 404 error.

I've found also MY_Router to extend CI_Route but doesn't work.

Can someone help me to resolve this problem ?

like image 742
PhilWeb Avatar asked Mar 03 '26 03:03

PhilWeb


1 Answers

Put the admin route before the any route:

$route['admin/(:any)'] = "admin/$1";
$route['(:any)'] = "site/$1";

otherwise it will always hit any and redirect to site. You have to give it a chance to match admin before matching any.

like image 151
stormdrain Avatar answered Mar 06 '26 03:03

stormdrain



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!