我想使用不同的名称来调用我的URL,而在此过程中,我要使用相同的方法来调用同一控制器。
http://localhost/CodeIgniter/HelloWorld
http://localhost/CodeIgniter/HelloWorld_2
这的实际路径将是这样
http://localhost/CodeIgniter/ControllerName/FunctionName
我尝试过,但是没有用。谁能帮我吗?
$route['HelloWorld'] = 'ControllerName/FunctionName';
$route['HelloWorld_2'] = 'ControllerName/FunctionName';