Codeigniter URL路由查询字符串

时间:2018-08-03 12:26:22

标签: codeigniter

我需要将我的网站网址路由到seo友好网址,解决这个问题吗?

请检查屏幕截图。

http://prntscr.com/ke8uf0

2 个答案:

答案 0 :(得分:0)

尝试一下。在 routes.php 中:

$route['products/(:any)'] = 'products/index/$1';

在您的控制器中:

public function index($product_name) { ... }

答案 1 :(得分:0)

在文件夹应用程序->配置-> routes.php中

$route['badrumsutrustning/(:any)'] = 'products/index/$1';