I want to access my URL\'s without index.php in CodeIgniter. Here is my Blog controller
index.php
Blog
class Blog extends CI_Controller { pub
in config.php
$config['base_url'] = ''; $config['index_page'] = '';
in .htacess
.htacess
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L]