Codeigniter路由控制器子文件夹 [英] Codeigniter Routes Controller Sub Folder

查看:149
本文介绍了Codeigniter路由控制器子文件夹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有路由和控制器的问题。我有两种类型的控制器:第一种类型用于管理网页,第二种类型用于cms,我更喜欢把它们放在一个子文件夹。示例:

  /controller/site.php(对于网页)
/ controller / admin / cms)

在routes.php中我写了:

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

我有这样设置的.htacces文件:

  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]

和config.php上的此变量:

  $ config ['index'] =''; 

,但它仅适用于site。如果我写mywebsite / admin / login例如,它返回404错误。



我也发现MY_Router扩展CI_Route但不工作。 p>

有人可以帮我解决这个问题吗?

解决方案

code> 路由

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

否则将始终命中任何 site 。您必须给它一个匹配任何之前匹配 admin 的机会。


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 ?

解决方案

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.

这篇关于Codeigniter路由控制器子文件夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆