You are currently viewing Codeigniter Remove index.php form URL using htaccess

Codeigniter Remove index.php form URL using htaccess

I want to share this tutorial for Codeigniter Remove index.php form 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. You Can Learn Laravel 11: How to Remove Public from URL – Complete Guide with Example

Learn Codeigniter Remove index.php form URL 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.

Codeigniter Remove index.php form URL using htaccess

Codeigniter Remove index.php form URL using htaccess Example

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…

You Can Follow CodeIgniter Docs

Leave a Reply