• Call Us: +92-333-7276335
  • - Mail Us: info@shekztech.com

Plot 1177, Sector 31B - Crossing, Karachi, Sindh

Loading...
How to remove index.php from URL in Codeigniter
  • Views: 4.6K
  • Category: Codeigniter
  • Published at: 10 Feb, 2017
  • Updated at: 18 Aug, 2023

How to remove index.php from URL in Codeigniter

How to remove index.php from the URL in Codeigniter?

If you are a beginner OR don't know how to remove index.php in Codeigniter 4 or Codeigniter 4..? I will show you how to remove index.php from the URL in CodeIgniter.

You know you consistently access your controllers and functions with index.php because, by default, index.php is included in your URLs.

www.yourdomain.com/index.php/controller/function 

 

shakzee.com

 

When You want a pretty URL for your website, you should remove index.php from your project; with index.php. My URL is like this www.xyz/index.php/courses, and without index.php, its looks like this www.xyz.com/courses.

In other words, it is a user-friendly URL

Open your config.php in your controller/config/config.php, now find

$config['index_page'] = "index.php" remove index.php
$config['index_page'] = ""

 

Now find

$config['uri_protocol'] ="AUTO" replace it $config['uri_protocol'] = "REQUEST_URI"

 

 

Now create a .htaccess  file in your root directory.

 

shakzee.com

 

Paste this code in your .htaccess file, which you just created.

RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt) 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L,QSA]

 

[embed]https://www.youtube.com/watch?v=lPl2zmjNpl8[/embed]

Shehzad Ahmed

Shehzad Ahmed is a highly qualified expert with a Master of Philosophy in Computer Science and a decade of extensive industry experience. With his impressive track record in web development and computer science, he has not only left an indelible mark on the industry but also made substantial contributions to education. Since , he has created more than eighty exhaustive courses, paving the way for innumerable individuals interested in learning and development. His unparalleled knowledge and innate ability to elucidate complex ideas make him a highly sought-after educator and consultant. Choose Shehzad and take advantage of his exceptional balance of technical expertise and teaching prowess to propel your learning journey or project to new heights.

0 Comment(s)
Write your comment