如何使用CodeIgniter重定向

时间:2015-07-07 07:19:44

标签: codeigniter

我遇到了使用codeigniter的页面重定向问题,我想从http://mywebsite_domain/index.php/home/show/206重定向到http://mywebsite_domain/index.php/ar/home/pages/show/206。我的控制器在“home”文件夹中命名“pages” 请帮帮我....

2 个答案:

答案 0 :(得分:1)

只需要在application/config/routes.php中的routes.php中编写一些代码。

$route['show/(:any)'] = 'ar/home/pages/show/$1';

CodeIgniter - Routing

了解详情

答案 1 :(得分:0)

您可以使用codeigniter的URI路由。

参考以下链接 - http://www.codeigniter.com/userguide2/general/routing.html

您还可以使用正则表达式来获取通用URI路由。 routes.php => /application/config/routs.php