I want to give route url with get parameters to static url like below
From "/web/view?id=10" To /about
Similarly "/web/view?id=11" To /contact
and so on.
You cannot provide routes based on get parameters in CodeIgniter. The best way to handle this is route /web/view to one method which then goes to /about and /contact based on $this->input->get('id'); See Codeigniter. How to pass parameters $ _GET in the route.php? for more info