在CI(CodeIgniter)框架中,路由配置是通过application/config/routes.php
文件来进行的。以下是一些基本的操作和步骤:
打开路由配置文件:
application/config
文件夹。routes.php
文件,这个文件包含了所有的路由规则。定义基本路由:
$route
数组中,你可以定义各种类型的路由规则。例如,定义一个默认控制器:$route['default_controller'] = 'welcome';
$route['products'] = 'products/index';
使用通配符和正则表达式:
admin
开头的控制器:$route['admin/*'] = 'admin/$1';
$route['user/(:num)'] = 'user/view/$1';
分组路由:
products
相关的路由放在一个组内:$route['products'] = 'products';
$route['products/(:any)'] = 'products/view/$1';
$route['products/(:num)/(:any)'] = 'products/category/$1/$2';
加载路由:
$this->load->helper('url')
来加载URL助手,它会自动处理路由。测试路由:
routes.php
文件后,你可以通过访问不同的URL来测试你的路由配置是否正确。自定义路由:
考虑路由优先级:
$route
数组中的顺序来选择第一个匹配的规则。因此,确保你的路由规则按照正确的顺序排列是很重要的。使用命名路由(可选):
$route['user/profile'] = 'user/profile';
$route['user/profile'] = 'user/profile';
site_url('user/profile')
来生成这个路由的URL。请注意,以上步骤和示例是基于CodeIgniter 4的,如果你使用的是旧版本的CodeIgniter(如3.x),则可能需要进行一些调整,因为新版本在路由方面引入了一些变化。