Step: 1 Open the file config.php
$config['index_page'] = "index.php"
$config['index_page'] = ""
$config['uri_protocol'] = "AUTO"
$config['uri_protocol'] = "REQUEST_URI"
Step: 2 Go to your CodeIgniter folder and create .htaccess file and Write below code in .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>