Codeigniter Remove index.php form URL using htaccess

By Hardik Savani November 5, 2023 Category : .htaccess Codeigniter

Hi Developer,

I want to share this tutorial for codeigniter remove index.php from url using htaccess file. i will show you code for how to remove index php from url in codeigniter using htaccess.

htaccess file provide a control to remove index.php name from url and also we can some validation on htaccess file if you want. you can also redirect your site http to https using htaccess.

As we know, codeigniter run index.php and with another route, it's come with index.php file in url. I had same issue on my ubuntu. when i was working on my client project on localhost. i did remove index.php file from url using htaccess file.

So, here you have to simply write below code on your .htaccess file on codeigniter project. let's open and add below code on it.

.htaccess

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php/$1 [L]

Now you can update your htaccess file and check it.

Now you can run your project.

I hope it can help you...

Shares