Fay
Fay

Reputation: 301

How to change URL structure - 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)

Upvotes: 0

Views: 371

Answers (1)

Hikmat Sijapati
Hikmat Sijapati

Reputation: 6994

Did you try like this...

$route['user/([a-zA-Z0-9_-]+)/(.*)'] = 'user/$2/$1';

Upvotes: 1

Related Questions