How can put url for link number 1
like other links, in codeigniter pagination, when start(refresh) page
« First < 1 2
It's in the config for pagination. From the docs ( http://codeigniter.com/user_guide/libraries/pagination.html ):
//Customizing the "Current Page" Link
$config['cur_tag_open'] = '';
$config['cur_tag_close'] = '';
You can change the values of these to or whatever else you choose.