How to remove index.php from url in codeigniter

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "February 3, 2016";

Add a .htaccess file at root and add following code

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
}