How to hide data from URL string on Codeigniter How to hide data from URL string on Codeigniter codeigniter codeigniter

How to hide data from URL string on Codeigniter


You has add your link config/routes.php

http://localhost/codeigniter/index.php/content/some-title/123

Ex: $route ['some-title/(: any)']  = 'content/some-title/$123';


You can do this:

$route['(:any)'] = 'content/view/$1';

and in your content controller you must have a method like the one follow:

public funtion view($pagetitle){…}