如何更改URL结构 - Codeigniter 3
问题描述:
I want to change a structure of URL using CodeIgniter routes
. Here is my URL
http://example.com/user/edit/username (E.g controller/method/parameter)
and I want to change to:
http://example.com/user/username/edit (E.g controller/parameter/method)
我想使用CodeIgniter http://example.com/user / edit / username (例如控制器/方法/参数 strong>) p>
我想更改为: p>
http://example.com/user/username/edit (例如 控制器/参数/方法 strong>) p>
div> routes code>更改URL的结构。 这是我的网址 p>
答
Did you try like this...
$route['user/([a-zA-Z0-9_-]+)/(.*)'] = 'user/$2/$1';