Remove index.php from url in Codeigniter
In config file
$config['index_page'] = "index.php"
$config['index_page'] = ""
In .htaccess file
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L]
Comments
Post a Comment