Category:codeigniter
codeigniter

In this tutorial I am learn to how to remove index.php from URL using .htaccess file in CodeIgniter. htaccess is the shortened used for Hypertext Access.
Download below code and save .htaccess file
Code
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
0 Comments
Related Post