Codeigniter : Remove index.php By .htaccess
if you want to remove index.php in your codeigniter, you can create easy .htaccess to you website
step 1 Open the file config.php Find and Replace the below code
1 |
$config['index_page'] = ''; |
Step 2 create .htaccess file. Then create this file in your codeigniter folder, application folder and upload file folder.
1 2 3 4 |
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] |
*when you use .htaccess for Remove index.php see a results
before
http://127.0.0.1/codeigniter/index.php/welcome
after
http://127.0.0.1/codeigniter/welcome