Reputation: 711
I want to add username just after domain in URL, It should have to look like this http://xx12.com/username/gallery
, Can anyone please help me to resolve this issue ? Any help will be really appreciated.
Upvotes: 0
Views: 36
Reputation: 1424
You can register a route that accepts username as an argument like this:
$route['(:any)/gallery'] = 'YourController/YourMethod';
Upvotes: 1