how to change the function name in the url using codeigniter?
how to change the function name in the url using codeigniter? I want to change the function name in the url, i searched for this a lot but unable to find any solution, can any one help me out what should i do consider for example i have a url like http://localhost/codeIgniter_try/index.php/Blog/blogvieww , http://localhost/codeIgniter_try/index.php/Blog/blogvieww so here "Blog" is the controller name and "blogvieww" is the function name so if i want to change the function name from "blogvieww" to "blogvieww_all" what can i do? Blog.php <?php defined('BASEPATH') OR exit('No direct script access allowed'); class Blog extends CI_Controller { public function index() { $this->load->view('blogview'); } public function blogvieww() { $this->load->view('blogvieww'); } }...