here\'s an example of url: http://www.example.com/search/search-keyword
I am trying to make this work, I removed the index.php using .htaccess, search is the contro
class Search extends CI_Controller{ function _remap($param) { $this->index($param); } function index($param){ echo $param; } }
You should then be able to access that as: /search/123123 :and the page would echo out "123123" or whatever you put in place of that.