Couldn't find solutions for my question. Who uses CodeIgniter knows that all URL in this framework are constructed as:
site.com/controller/method/parameter...
Is there a way fro changing that into some other pattern as for excample:
site.com/controller-method-parameter.html
So in general is there a way to simple change / for any other such char as - and having those urls generated atomaticly using ie. url helper?
$this->load->helper('url'); site_url('applicationform/apply');And You would get url like:site.com/controller/methodwhat i'm aiming for is still usesite_url('applicationform/apply')but at the frontend having for excamplesite.com/applicationform-appy. Just replace/with-and still be able to use those helpers